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
1 changed files with 5 additions and 1 deletions

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