From 431ade558046103654783cc96a02befd73f11bf5 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Fri, 26 Aug 2005 05:39:20 +0100 Subject: [PATCH] reset active_post_id on offset change --- tt-rss.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tt-rss.js b/tt-rss.js index 8d289967..1ab5ecb5 100644 --- a/tt-rss.js +++ b/tt-rss.js @@ -262,8 +262,9 @@ function viewfeed(feed, skip, subop) { return } - if (active_feed_id != feed) + if (active_feed_id != feed || skip != active_offset) { active_post_id = false; + } active_feed_id = feed; active_offset = skip; -- 2.39.2