getfeedname: fix for non-numeric feeds (tags)
This commit is contained in:
parent
5eed9e2e18
commit
9842b51c71
1 changed files with 3 additions and 0 deletions
|
@ -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…
Reference in a new issue