mirror of https://github.com/vector-im/riot-web
Apply patch to the right branch: update for new count format
parent
83634bf930
commit
acce08194d
|
@ -641,8 +641,8 @@ module.exports = React.createClass({
|
||||||
for (var i = 0; i < rooms.length; ++i) {
|
for (var i = 0; i < rooms.length; ++i) {
|
||||||
if (rooms[i].hasMembershipState(MatrixClientPeg.get().credentials.userId, 'invite')) {
|
if (rooms[i].hasMembershipState(MatrixClientPeg.get().credentials.userId, 'invite')) {
|
||||||
++notifCount;
|
++notifCount;
|
||||||
} else if (rooms[i].unread_notifications && rooms[i].unread_notifications['notification_count']) {
|
} else if (rooms[i].getUnreadNotificationCount()) {
|
||||||
notifCount += rooms[i].unread_notifications['notification_count'];
|
notifCount += rooms[i].getUnreadNotificationCount();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
this.favicon.badge(notifCount);
|
this.favicon.badge(notifCount);
|
||||||
|
|
Loading…
Reference in New Issue