From a958cd20f13c3df6913ae36b1372a5bfb966967e Mon Sep 17 00:00:00 2001 From: David Baker Date: Tue, 15 Feb 2022 20:06:29 +0000 Subject: [PATCH] Fix delayed badge update for mentions in encrypted rooms (#7813) * Fix delayed badge update for mentions in encrypted rooms Fixes https://github.com/vector-im/element-web/issues/20859 More detail on the issue * Remove unused import * Fix listener removal --- src/stores/notifications/RoomNotificationState.ts | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/src/stores/notifications/RoomNotificationState.ts b/src/stores/notifications/RoomNotificationState.ts index 782b86e4a5..1b68f3a7b4 100644 --- a/src/stores/notifications/RoomNotificationState.ts +++ b/src/stores/notifications/RoomNotificationState.ts @@ -35,7 +35,7 @@ export class RoomNotificationState extends NotificationState implements IDestroy this.room.on("Room.redaction", this.handleRoomEventUpdate); this.room.on("Room.myMembership", this.handleMembershipUpdate); this.room.on("Room.localEchoUpdated", this.handleLocalEchoUpdated); - MatrixClientPeg.get().on("Event.decrypted", this.handleRoomEventUpdate); + MatrixClientPeg.get().on("Event.decrypted", this.onEventDecrypted); MatrixClientPeg.get().on("accountData", this.handleAccountDataUpdate); this.updateNotificationState(); } @@ -52,7 +52,7 @@ export class RoomNotificationState extends NotificationState implements IDestroy this.room.removeListener("Room.myMembership", this.handleMembershipUpdate); this.room.removeListener("Room.localEchoUpdated", this.handleLocalEchoUpdated); if (MatrixClientPeg.get()) { - MatrixClientPeg.get().removeListener("Event.decrypted", this.handleRoomEventUpdate); + MatrixClientPeg.get().removeListener("Event.decrypted", this.onEventDecrypted); MatrixClientPeg.get().removeListener("accountData", this.handleAccountDataUpdate); } } @@ -71,8 +71,15 @@ export class RoomNotificationState extends NotificationState implements IDestroy this.updateNotificationState(); }; + private onEventDecrypted = (event: MatrixEvent) => { + if (event.getRoomId() !== this.room.roomId) return; // ignore - not for us or notifications timeline + + this.updateNotificationState(); + }; + private handleRoomEventUpdate = (event: MatrixEvent, room: Room | null) => { if (room?.roomId !== this.room.roomId) return; // ignore - not for us or notifications timeline + this.updateNotificationState(); };