1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 11:45:56 +00:00

getfeedname: fix for non-numeric feeds (tags)

This commit is contained in:
Andrew Dolgov
2015-12-30 15:11:39 +03:00
parent 5eed9e2e18
commit 9842b51c71

View File

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