Add a null check here since room can be null and this was throwing

This commit is contained in:
David Baker 2016-02-09 16:48:12 +00:00
parent b5f7bd6cfb
commit b4a7124686

View file

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