Update for new unread count format

pull/21833/head
David Baker 2016-01-20 15:56:11 +00:00
parent 67ff769962
commit 83634bf930
1 changed files with 2 additions and 2 deletions

View File

@ -641,8 +641,8 @@ module.exports = React.createClass({
for (var i = 0; i < rooms.length; ++i) {
if (rooms[i].hasMembershipState(MatrixClientPeg.get().credentials.userId, 'invite')) {
++notifCount;
} else if (rooms[i].unread_notification_count) {
notifCount += rooms[i].unread_notification_count;
} else if (rooms[i].unread_notifications && rooms[i].unread_notifications['notification_count']) {
notifCount += rooms[i].unread_notifications['notification_count'];
}
}
this.favicon.badge(notifCount);