Fix null pointer

Check if users is null, not the room
This commit is contained in:
David Baker 2017-09-22 16:55:47 +01:00
parent 4c1a85cb71
commit 11f6c8cf53

View file

@ -112,7 +112,7 @@ export default class UserProvider extends AutocompleteProvider {
}
onUserSpoke(user: RoomMember) {
if (this.room === null) return;
if (this.users === null) return;
if (user.userId === MatrixClientPeg.get().credentials.userId) return;
// Move the user that spoke to the front of the array