From ac0bf3c1705f3bd9e13cad252c96d02daeca84df Mon Sep 17 00:00:00 2001 From: Alexandre Alapetite Date: Sun, 25 Jan 2026 13:57:20 +0100 Subject: Fix shortcut next unread article (#8466) fix https://github.com/FreshRSS/FreshRSS/issues/8426 regression from https://github.com/FreshRSS/FreshRSS/pull/8057 --- p/scripts/main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/p/scripts/main.js b/p/scripts/main.js index 80fbd71fc..0ff9e609c 100644 --- a/p/scripts/main.js +++ b/p/scripts/main.js @@ -558,7 +558,7 @@ function next_unread_entry(skipping) { do new_active = new_active.nextElementSibling; while (new_active && !new_active.classList.contains('not_read')); if (!new_active) { - next_feed(); + next_feed(true); } } else { new_active = document.querySelector('.not_read'); -- cgit v1.2.3