Add a null check here since room can be null and this was throwing
This commit is contained in:
parent
b5f7bd6cfb
commit
b4a7124686
1 changed files with 5 additions and 3 deletions
|
@ -42,9 +42,11 @@ module.exports = React.createClass({
|
||||||
// TODO: Keep this list bleeding-edge up-to-date. Practically speaking,
|
// TODO: Keep this list bleeding-edge up-to-date. Practically speaking,
|
||||||
// it will do for now not being updated as random new users join different
|
// it will do for now not being updated as random new users join different
|
||||||
// rooms as this list will be reloaded every room swap.
|
// rooms as this list will be reloaded every room swap.
|
||||||
this._userList = MatrixClientPeg.get().getUsers().filter((u) => {
|
if (this._room) {
|
||||||
return !this._room.hasMembershipState(u.userId, "join");
|
this._userList = MatrixClientPeg.get().getUsers().filter((u) => {
|
||||||
});
|
return !this._room.hasMembershipState(u.userId, "join");
|
||||||
|
});
|
||||||
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
onInvite: function(ev) {
|
onInvite: function(ev) {
|
||||||
|
|
Loading…
Reference in a new issue