Skip to content
Snippets Groups Projects
Commit d4a5ab11 authored by Kegan Dougal's avatar Kegan Dougal
Browse files

Fix NPE if you cold boot vector on a URL with a room which you were invited to but not yet joined.

parent feaf2a31
No related branches found
No related tags found
No related merge requests found
......@@ -160,7 +160,7 @@ module.exports = {
},
roomMembers: function(limit) {
var all_members = this.memberDict;
var all_members = this.memberDict || {};
var all_user_ids = Object.keys(all_members);
if (this.memberSort) all_user_ids.sort(this.memberSort);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment