1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-14 09:55:54 +00:00

fix hideOrShowFeeds issue in tag mode

This commit is contained in:
Andrew Dolgov
2006-08-26 16:26:17 +01:00
parent 7553dd8b61
commit 0ac2faea3f

View File

@@ -822,7 +822,11 @@ function hideOrShowFeedsCategory(doc, node, hide, cat_node) {
cat_node.style.display = "list-item";
}
} else {
cat_node.style.display = "list-item";
try {
cat_node.style.display = "list-item";
} catch (e) {
debug(e);
}
}
// debug("unread for category: " + cat_unread);