mirror of
https://github.com/element-hq/element-web
synced 2024-11-24 18:25:49 +03:00
Merge pull request #2945 from matrix-org/jryans/guard-room
Check for `room` in all `Room.timeline*` handlers
This commit is contained in:
commit
2d25cab693
1 changed files with 1 additions and 0 deletions
|
@ -117,6 +117,7 @@ export default class RoomBreadcrumbs extends React.Component {
|
||||||
};
|
};
|
||||||
|
|
||||||
onRoomTimeline = (event, room) => {
|
onRoomTimeline = (event, room) => {
|
||||||
|
if (!room) return; // Can be null for the notification timeline, etc.
|
||||||
if (this.state.rooms.map(r => r.room.roomId).includes(room.roomId)) {
|
if (this.state.rooms.map(r => r.room.roomId).includes(room.roomId)) {
|
||||||
this._calculateRoomBadges(room);
|
this._calculateRoomBadges(room);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue