Merge remote-tracking branch 'origin/develop' into develop

This commit is contained in:
Weblate 2017-11-01 22:18:10 +00:00
commit 7ff50d01b8

View file

@ -129,7 +129,11 @@ class FlairStore extends EventEmitter {
} }
const updatedUserGroups = resp.users; const updatedUserGroups = resp.users;
usersInFlight.forEach((userId) => { usersInFlight.forEach((userId) => {
if (this._usersPending[userId]) {
this._usersPending[userId].resolve(updatedUserGroups[userId] || []); this._usersPending[userId].resolve(updatedUserGroups[userId] || []);
} else {
console.error("Promise vanished for resolving groups for " + userId);
}
}); });
} }