Merge pull request #150 from matrix-org/dbkr/null_check_invite_member_list

Add a null check here since room can be null and this was throwing
pull/21833/head
David Baker 2016-02-09 17:23:38 +00:00
commit f72e534ac0
1 changed files with 5 additions and 3 deletions

View File

@ -42,9 +42,11 @@ module.exports = React.createClass({
// 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
// rooms as this list will be reloaded every room swap.
this._userList = MatrixClientPeg.get().getUsers().filter((u) => {
return !this._room.hasMembershipState(u.userId, "join");
});
if (this._room) {
this._userList = MatrixClientPeg.get().getUsers().filter((u) => {
return !this._room.hasMembershipState(u.userId, "join");
});
}
},
onInvite: function(ev) {