diff options
| author | 2026-01-25 13:57:20 +0100 | |
|---|---|---|
| committer | 2026-01-25 13:57:20 +0100 | |
| commit | ac0bf3c1705f3bd9e13cad252c96d02daeca84df (patch) | |
| tree | 4f3abd73974d02fb6b759c5c8f31eca835fd497a | |
| parent | 2b53203e88c7877e2e55cd368bbfff160153fe4f (diff) | |
Fix shortcut next unread article (#8466)
fix https://github.com/FreshRSS/FreshRSS/issues/8426
regression from https://github.com/FreshRSS/FreshRSS/pull/8057
| -rw-r--r-- | p/scripts/main.js | 2 |
1 files changed, 1 insertions, 1 deletions
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'); |
