aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/app
diff options
context:
space:
mode:
authorAlexandre Alapetite <alexandre@alapetite.fr>2025-01-08 15:10:39 +0100
committerGitHub <noreply@github.com>2025-01-08 15:10:39 +0100
commit3280ec617f8081bf0d5349e441ae564a42fdc500 (patch)
tree8444034333f61085a48be2dc65ebf233b5b5337f /app
parent700eef13ed91c4e3ccb3c932e2a437ba9b174dcd (diff)
downloadfreshrss-3280ec617f8081bf0d5349e441ae564a42fdc500.tar.gz
freshrss-3280ec617f8081bf0d5349e441ae564a42fdc500.zip
Fix continuous mode (#7200)
fix https://github.com/FreshRSS/FreshRSS/issues/7199
Diffstat (limited to 'app')
-rw-r--r--app/Controllers/indexController.php2
1 files changed, 2 insertions, 0 deletions
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();
};