mirror of
https://github.com/element-hq/element-web
synced 2024-11-29 04:48:50 +03:00
Merge remote-tracking branch 'origin/develop' into develop
This commit is contained in:
commit
7ff50d01b8
1 changed files with 5 additions and 1 deletions
|
@ -129,7 +129,11 @@ class FlairStore extends EventEmitter {
|
||||||
}
|
}
|
||||||
const updatedUserGroups = resp.users;
|
const updatedUserGroups = resp.users;
|
||||||
usersInFlight.forEach((userId) => {
|
usersInFlight.forEach((userId) => {
|
||||||
this._usersPending[userId].resolve(updatedUserGroups[userId] || []);
|
if (this._usersPending[userId]) {
|
||||||
|
this._usersPending[userId].resolve(updatedUserGroups[userId] || []);
|
||||||
|
} else {
|
||||||
|
console.error("Promise vanished for resolving groups for " + userId);
|
||||||
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue