1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 01:25:56 +00:00

* Feeds.openNextUnread: fix

* model.getNextFeed: make sure return values are consistent, stop
wrapping back to starred
This commit is contained in:
Andrew Dolgov
2021-03-22 07:39:31 +03:00
parent 43744412f4
commit 2e6d48ead7
2 changed files with 6 additions and 5 deletions

View File

@@ -133,9 +133,10 @@ const Feeds = {
return Feeds.reloadCurrent('');
},
openNextUnread: function() {
const is_cat = this.activeIsCat();
const nuf = this.getNextUnread(this.getActive(), is_cat);
if (nuf) this.open({feed: nuf, is_cat: is_cat});
const [feed, is_cat] = this.getNextUnread(this.getActive(), this.activeIsCat());
if (feed !== false)
this.open({feed: feed, is_cat: is_cat});
},
toggle: function() {
Element.toggle("feeds-holder");