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 GitHub
parent 879b1475f1
commit a0748f3c94
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

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