Workaround for soft-crash with calls on startup

Fixes https://github.com/vector-im/riot-web/issues/11458
pull/21833/head
David Baker 2019-11-21 17:31:57 +00:00
parent 9d5f3ce32d
commit b239fde32d
1 changed files with 7 additions and 0 deletions

View File

@ -90,6 +90,13 @@ module.exports = createReactClass({
}
} else {
call = CallHandler.getAnyActiveCall();
// Ignore calls if we can't get the room associated with them.
// I think the underlying problem is that the js-sdk sends events
// for calls before it has made the rooms available in the store,
// although this isn't confirmed.
if (MatrixClientPeg.get().getRoom(call.roomId) === null) {
call = null;
}
this.setState({ call: call });
}