1
0
Fork 0
mirror of https://github.com/wallabag/wallabag.git synced 2025-08-11 17:51:02 +00:00

Change NB_ELEMENTS in pocket importer to 30 to comply with Pocket API restriction.

This commit is contained in:
Ethan Ruffing 2024-11-11 09:52:54 -05:00 committed by Jeremy Benoist
parent c7c74de4b8
commit c4857564f3
No known key found for this signature in database
GPG key ID: 7168D5DD29F38552

View file

@ -15,7 +15,7 @@ use Wallabag\CoreBundle\Entity\Entry;
class PocketImport extends AbstractImport
{
public const NB_ELEMENTS = 5000;
public const NB_ELEMENTS = 30;
/**
* @var HttpMethodsClient
*/