summaryrefslogtreecommitdiffstats
path: root/templates/part.feed.unread.php
diff options
context:
space:
mode:
Diffstat (limited to 'templates/part.feed.unread.php')
-rw-r--r--templates/part.feed.unread.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/part.feed.unread.php b/templates/part.feed.unread.php
index 0c6527af3..5b5452fde 100644
--- a/templates/part.feed.unread.php
+++ b/templates/part.feed.unread.php
@@ -1,6 +1,6 @@
<li ng-class="{
active: subscriptionsBusinessLayer.isActive(0),
- unread: subscriptionsBusinessLayer.getUnreadCount(0) > 0
+ unread: getTotalUnreadCount() > 0
}"
ng-show="subscriptionsBusinessLayer.isVisible(0)">
<a class="rss-icon"
@@ -17,8 +17,8 @@
</a>
<span class="utils">
<span class="unread-counter"
- ng-show="subscriptionsBusinessLayer.getUnreadCount() > 0">
- {{ subscriptionsBusinessLayer.getUnreadCount() }}
+ ng-show="getTotalUnreadCount() > 0">
+ {{ getTotalUnreadCount() }}
</span>
<button class="svg action mark-read-icon"
ng-click="subscriptionsBusinessLayer.markAllRead()"