Skip to content

Commit

Permalink
Merge pull request #6881 from matrix-org/t3chguy/fix/18975
Browse files Browse the repository at this point in the history
  • Loading branch information
t3chguy committed Sep 29, 2021
2 parents c3bac33 + af8c07a commit f75af2d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/stores/SpaceStore.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -595,7 +595,7 @@ export class SpaceStoreClass extends AsyncStoreWithClient<IState> {

// Update NotificationStates
this.getNotificationState(s).setRooms(visibleRooms.filter(room => {
if (!roomIds.has(room.roomId)) return false;
if (!roomIds.has(room.roomId) || room.isSpaceRoom()) return false;

if (DMRoomMap.shared().getUserIdForRoomId(room.roomId)) {
return s === HOME_SPACE;
Expand Down

0 comments on commit f75af2d

Please sign in to comment.