summaryrefslogtreecommitdiff
path: root/feedlist.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2010-11-19 22:28:16 +0300
committerAndrew Dolgov <[email protected]>2010-11-19 22:28:16 +0300
commit179db4a005ac88775ef279be3804c0768785d8ba (patch)
tree6158b1b3359609ab488e33269c15ed6c340db066 /feedlist.js
parent1beea8001786b6cbc8a9fc42574970aede1b56dd (diff)
disable new content prompt for categories
Diffstat (limited to 'feedlist.js')
-rw-r--r--feedlist.js5
1 files changed, 4 insertions, 1 deletions
diff --git a/feedlist.js b/feedlist.js
index ad3c2c2c8..9fb9c9efb 100644
--- a/feedlist.js
+++ b/feedlist.js
@@ -309,7 +309,10 @@ function parse_counters(reply, scheduled_call) {
var treeItem;
- if (id == getActiveFeedId() && ctr > getFeedUnread(id) && scheduled_call) {
+ // TODO: enable new content notification for categories
+
+ if (!activeFeedIsCat() && id == getActiveFeedId()
+ && ctr > getFeedUnread(id) && scheduled_call) {
displayNewContentPrompt(id);
}