From c4857564f35bc43f43af4e96ba11b9f8eccc6217 Mon Sep 17 00:00:00 2001 From: Ethan Ruffing Date: Mon, 11 Nov 2024 09:52:54 -0500 Subject: [PATCH] Change NB_ELEMENTS in pocket importer to 30 to comply with Pocket API restriction. --- src/Wallabag/ImportBundle/Import/PocketImport.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Wallabag/ImportBundle/Import/PocketImport.php b/src/Wallabag/ImportBundle/Import/PocketImport.php index 5a0325759..b9c5c0062 100644 --- a/src/Wallabag/ImportBundle/Import/PocketImport.php +++ b/src/Wallabag/ImportBundle/Import/PocketImport.php @@ -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 */