summaryrefslogtreecommitdiffstats
path: root/js/menu.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/menu.js')
-rw-r--r--js/menu.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/menu.js b/js/menu.js
index 2b986afac..2d60d9e87 100644
--- a/js/menu.js
+++ b/js/menu.js
@@ -841,7 +841,7 @@ var News = News || {};
Menu.prototype._applyUnreadCountStyle = function(type, id, unreadCount) {
var $node = this._getNodeFromTypeAndId(type, id);
- if(type === MenuNodeType.Feed){
+ if(type !== MenuNodeType.Folder){
$node.children('.unread_items_counter').html(unreadCount);
}