mirror of
https://github.com/vector-im/element-web.git
synced 2026-05-05 12:16:53 +02:00
Update for new unread count format
This commit is contained in:
parent
67ff769962
commit
83634bf930
@ -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);
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user