getfeedname: fix for non-numeric feeds (tags)

master
Andrew Dolgov 9 years ago
parent 5eed9e2e18
commit 9842b51c71

@ -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)

Loading…
Cancel
Save