diff --git a/functions.js b/functions.js index c67d5dfa5..3e0b09146 100644 --- a/functions.js +++ b/functions.js @@ -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);