mirror of
https://github.com/viq/NewsBlur.git
synced 2025-09-18 21:43:31 +00:00
Only moving to next feed when marking as read without a direction (older/newer).
This commit is contained in:
parent
8db52c89c1
commit
18afd7abd6
1 changed files with 2 additions and 2 deletions
|
@ -2117,7 +2117,7 @@
|
|||
|
||||
this.model.mark_feed_as_read([feed_id], cutoff_timestamp, direction,
|
||||
feed_id == this.active_feed, _.bind(function() {
|
||||
if (NEWSBLUR.assets.preference('markread_nextfeed') == 'nextfeed') {
|
||||
if (!direction && NEWSBLUR.assets.preference('markread_nextfeed') == 'nextfeed') {
|
||||
this.show_next_feed(1);
|
||||
}
|
||||
this.feeds_unread_count(feed_id);
|
||||
|
@ -2139,7 +2139,7 @@
|
|||
if (!this.socket || !this.socket.socket || !this.socket.socket.connected) {
|
||||
this.force_feeds_refresh(null, false, feeds);
|
||||
}
|
||||
if (NEWSBLUR.assets.preference('markread_nextfeed') == 'nextfeed') {
|
||||
if (!direction && NEWSBLUR.assets.preference('markread_nextfeed') == 'nextfeed') {
|
||||
this.show_next_feed(1);
|
||||
}
|
||||
}, this));
|
||||
|
|
Loading…
Add table
Reference in a new issue