Null check room because those events will be emitted before the room is stored.
This commit is contained in:
parent
1cabe2ec37
commit
b0f0d5f6d0
1 changed files with 1 additions and 0 deletions
|
@ -385,6 +385,7 @@ module.exports = React.createClass({
|
|||
this._updateTabCompleteList(this.state.room);
|
||||
|
||||
var room = MatrixClientPeg.get().getRoom(this.props.roomId);
|
||||
if (!room) return;
|
||||
var me = MatrixClientPeg.get().credentials.userId;
|
||||
if (this.state.joining && room.hasMembershipState(me, "join")) {
|
||||
this.setState({
|
||||
|
|
Loading…
Reference in a new issue