summaryrefslogtreecommitdiff
path: root/functions.js
diff options
context:
space:
mode:
Diffstat (limited to 'functions.js')
-rw-r--r--functions.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/functions.js b/functions.js
index 3bed4f895..ddfce2477 100644
--- a/functions.js
+++ b/functions.js
@@ -938,7 +938,8 @@ function hideOrShowFeedsCategory(doc, node, hide, cat_node) {
var has_unread = (node.childNodes[i].className != "feed" &&
node.childNodes[i].className != "label" &&
- node.childNodes[i].className != "virt" &&
+ !(!getInitParam("hide_read_shows_special") &&
+ node.childNodes[i].className == "virt") &&
node.childNodes[i].className != "error" &&
node.childNodes[i].className != "tag");