mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-09-18 21:50:56 +00:00
Fixing paging in standrad feeds. Now checking for river in active_feed.
This commit is contained in:
parent
de22b2fc27
commit
70f13f413d
1 changed files with 1 additions and 1 deletions
|
@ -2253,7 +2253,7 @@
|
|||
if (this.active_feed == 'starred') {
|
||||
this.model.fetch_starred_stories(page+1,
|
||||
_.bind(this.post_open_starred_stories, this), false);
|
||||
} else if (this.active_feed.indexOf('river:') != -1) {
|
||||
} else if (typeof this.active_feed == "string" && this.active_feed.indexOf('river:') != -1) {
|
||||
this.model.fetch_river_stories(this.cache['river_feeds_with_unreads'], page+1,
|
||||
_.bind(this.post_open_river_stories, this), false);
|
||||
} else {
|
||||
|
|
Loading…
Add table
Reference in a new issue