From 3280ec617f8081bf0d5349e441ae564a42fdc500 Mon Sep 17 00:00:00 2001 From: Alexandre Alapetite Date: Wed, 8 Jan 2025 15:10:39 +0100 Subject: Fix continuous mode (#7200) fix https://github.com/FreshRSS/FreshRSS/issues/7199 --- app/Controllers/indexController.php | 2 ++ 1 file changed, 2 insertions(+) (limited to 'app/Controllers') diff --git a/app/Controllers/indexController.php b/app/Controllers/indexController.php index e2d48560e..1d355ca84 100644 --- a/app/Controllers/indexController.php +++ b/app/Controllers/indexController.php @@ -90,6 +90,8 @@ class FreshRSS_index_Controller extends FreshRSS_ActionController { //We have enough entries: we discard the last one to use it for the next articles' page ob_clean(); FreshRSS_Context::$continuation_id = $lastEntry->id(); + } else { + FreshRSS_Context::$continuation_id = '0'; } ob_end_flush(); }; -- cgit v1.2.3