properly select categories which have the same numeric ID as existing feeds
This commit is contained in:
parent
ad0056a8b2
commit
73241803c7
1 changed files with 4 additions and 1 deletions
|
@ -214,7 +214,10 @@ function viewfeed(feed, subop, is_cat, subop_param, skip_history, offset) {
|
|||
queue: { position:'end', scope: 'FEEDL-' + feed, limit: 1 } } );
|
||||
} */
|
||||
|
||||
var unread_ctr = get_feed_unread(feed);
|
||||
var unread_ctr = -1;
|
||||
|
||||
if (!is_cat) unread_ctr = get_feed_unread(feed);
|
||||
|
||||
var cache_check = false;
|
||||
|
||||
if (unread_ctr != -1 && !page_offset && !force_nocache && !subop) {
|
||||
|
|
Loading…
Reference in a new issue