diff --git a/src/components/structures/RoomView.tsx b/src/components/structures/RoomView.tsx index b64d2e876b..0ee847fbc9 100644 --- a/src/components/structures/RoomView.tsx +++ b/src/components/structures/RoomView.tsx @@ -801,6 +801,7 @@ export default class RoomView extends React.Component { private handleEffects = (ev) => { if (!this.state.room || !this.state.matrixClientIsReady) return; // not ready at all + if (ev.getRoomId() !== this.state.room.roomId) return; // not for us const notifState = RoomNotificationStateStore.instance.getRoomState(this.state.room); if (!notifState.isUnread) return;