1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-08 21:42:24 +03:00

Merge pull request #5482 from matrix-org/travis/fix-confetti

Only show confetti if the current room is receiving an appropriate event
This commit is contained in:
Travis Ralston
2020-12-09 12:06:50 -07:00
committed by GitHub

View File

@@ -801,6 +801,7 @@ export default class RoomView extends React.Component<IProps, IState> {
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;