summaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2015-12-30 15:11:39 +0300
committerAndrew Dolgov <[email protected]>2015-12-30 15:11:39 +0300
commit9842b51c711eb33184105b385b4c78446387983c (patch)
treefee8df0f097f1bbca21fa60c0ae60a424b78d410 /js
parent5eed9e2e185f26f5fc94554fc3be976ea11b03d5 (diff)
getfeedname: fix for non-numeric feeds (tags)
Diffstat (limited to 'js')
-rw-r--r--js/feedlist.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/js/feedlist.js b/js/feedlist.js
index d14d3e5ca..c9ff121d7 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)