From 4efc9c2a59120dc14f25051901b7e23e577bbafa Mon Sep 17 00:00:00 2001 From: Simon Vieille Date: Tue, 5 Apr 2022 13:11:53 +0200 Subject: [PATCH] update api call --- src/Api/TTRssClient.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Api/TTRssClient.php b/src/Api/TTRssClient.php index c0d7af4..7c538cc 100644 --- a/src/Api/TTRssClient.php +++ b/src/Api/TTRssClient.php @@ -11,7 +11,7 @@ class TTRssClient { public function getPager(int $page = 1): array { - $result = @file_get_contents('https://tiny.deblan.org/deblan_api/?page='.$page); + $result = @file_get_contents('https://tiny.deblan.org/deblan_api/?itemsPerPage=10&page='.$page); if ($result) { $result = str_replace('\\u0092', "'", $result);