From: Andrew Dolgov Date: Wed, 30 Dec 2015 12:11:39 +0000 (+0300) Subject: getfeedname: fix for non-numeric feeds (tags) X-Git-Tag: 16.3~67 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=9842b51c711eb33184105b385b4c78446387983c;p=tt-rss.git getfeedname: fix for non-numeric feeds (tags) --- diff --git a/js/feedlist.js b/js/feedlist.js index d14d3e5c..c9ff121d 100644 --- a/js/feedlist.js +++ b/js/feedlist.js @@ -321,6 +321,9 @@ function hideOrShowFeeds(hide) { } function getFeedName(feed, is_cat) { + + if (isNaN(feed)) return feed; // it's a tag + var tree = dijit.byId("feedTree"); if (tree && tree.model)