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

Only show confetti if the current room is receiving an appropriate event
pull/21833/head
Travis Ralston 2020-12-09 12:06:50 -07:00 committed by GitHub
commit 560a8412d0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

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;