From: Andrew Dolgov Date: Fri, 16 Jan 2009 14:44:10 +0000 (+0100) Subject: properly select categories which have the same numeric ID as existing feeds X-Git-Tag: 1.3.0~150 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=73241803c7c5975b00eba91b08a5071d341af0c6;p=tt-rss.git properly select categories which have the same numeric ID as existing feeds --- diff --git a/feedlist.js b/feedlist.js index 5a279d8c..b4ac1313 100644 --- a/feedlist.js +++ b/feedlist.js @@ -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) {