mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-09-18 21:50:56 +00:00
String check for river in get_next_story
This commit is contained in:
parent
6ff83ca98b
commit
94bb8ed7e3
1 changed files with 1 additions and 1 deletions
|
@ -3494,7 +3494,7 @@
|
|||
var $folder;
|
||||
feed_id = feed_id || this.active_feed;
|
||||
|
||||
if (feed_id.indexOf('river:') != -1) {
|
||||
if (_.isString(feed_id) && feed_id.indexOf('river:') != -1) {
|
||||
if (feed_id == 'river:') {
|
||||
$folder = this.$s.$feed_list;
|
||||
} else {
|
||||
|
|
Loading…
Add table
Reference in a new issue