From 9d8f8e9a9bd07400094607c02b6716e2fb191302 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/Import/PocketImport.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Import/PocketImport.php b/src/Import/PocketImport.php index 24da0d97f..61772236f 100644 --- a/src/Import/PocketImport.php +++ b/src/Import/PocketImport.php @@ -9,7 +9,7 @@ use Wallabag\Entity\Entry; class PocketImport extends AbstractImport { - public const NB_ELEMENTS = 5000; + public const NB_ELEMENTS = 30; /** * @var HttpClientInterface */