Merge pull request #2581 from matrix-org/bwindels/communitybadgefix
Fix: community badges
This commit is contained in:
commit
7affcf7f4c
1 changed files with 4 additions and 1 deletions
|
@ -180,7 +180,10 @@ class TagOrderStore extends Store {
|
|||
const client = MatrixClientPeg.get();
|
||||
const changedBadges = {};
|
||||
groupIds.forEach(groupId => {
|
||||
const rooms = GroupStore.getGroupRooms(groupId).map(r => client.getRoom(r.roomId));
|
||||
const rooms =
|
||||
GroupStore.getGroupRooms(groupId)
|
||||
.map(r => client.getRoom(r.roomId)) // to Room objects
|
||||
.filter(r => r !== null && r !== undefined); // filter out rooms we haven't joined from the group
|
||||
const badge = rooms && RoomNotifs.aggregateNotificationCount(rooms);
|
||||
changedBadges[groupId] = (badge && badge.count !== 0) ? badge : undefined;
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue