fix hideOrShowFeeds issue in tag mode
This commit is contained in:
parent
7553dd8b61
commit
0ac2faea3f
|
@ -822,7 +822,11 @@ function hideOrShowFeedsCategory(doc, node, hide, cat_node) {
|
|||
cat_node.style.display = "list-item";
|
||||
}
|
||||
} else {
|
||||
try {
|
||||
cat_node.style.display = "list-item";
|
||||
} catch (e) {
|
||||
debug(e);
|
||||
}
|
||||
}
|
||||
|
||||
// debug("unread for category: " + cat_unread);
|
||||
|
|
Loading…
Reference in New Issue