Fix CallPreview room is null (#7265)

This commit is contained in:
Michael Telatynski 2021-12-02 14:07:27 +00:00 committed by GitHub
parent aa7cae08aa
commit b5a488b01b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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 = () => {