mirror of https://github.com/vector-im/riot-web
Merge pull request #5482 from matrix-org/travis/fix-confetti
Only show confetti if the current room is receiving an appropriate eventpull/21833/head
commit
560a8412d0
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue