diff options
| author | Andrew Dolgov <fox@madoka.spb.ru> | 2005-08-26 05:39:20 +0100 |
|---|---|---|
| committer | Andrew Dolgov <fox@madoka.spb.ru> | 2005-08-26 05:39:20 +0100 |
| commit | 431ade558046103654783cc96a02befd73f11bf5 (patch) | |
| tree | b35100ec7dd1312c314fde98cd116011bfb370af /tt-rss.js | |
| parent | b5daec986cf9f10c953af6e0fb1bdda91a41b0a5 (diff) | |
reset active_post_id on offset change
Diffstat (limited to 'tt-rss.js')
| -rw-r--r-- | tt-rss.js | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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; |