mirror of
https://github.com/element-hq/element-web
synced 2024-11-27 19:56:47 +03:00
Fix CallPreview room is null
(#7265)
This commit is contained in:
parent
aa7cae08aa
commit
b5a488b01b
1 changed files with 3 additions and 1 deletions
|
@ -133,7 +133,9 @@ export default class CallPreview extends React.Component<IProps, IState> {
|
|||
}
|
||||
SettingsStore.unwatchSetting(this.settingsWatcherRef);
|
||||
const room = MatrixClientPeg.get().getRoom(this.state.roomId);
|
||||
WidgetLayoutStore.instance.off(WidgetLayoutStore.emissionForRoom(room), this.updateCalls);
|
||||
if (room) {
|
||||
WidgetLayoutStore.instance.off(WidgetLayoutStore.emissionForRoom(room), this.updateCalls);
|
||||
}
|
||||
}
|
||||
|
||||
private onRoomViewStoreUpdate = () => {
|
||||
|
|
Loading…
Reference in a new issue