Skip to content

Commit 7e1822b

Browse files
committed
Port fix of getUsers duplicate resp from web lib.
1 parent f830d08 commit 7e1822b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/hub/atlas.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ class AtlasClient {
209209
const resp = await this.fetch('/v1/user/?id_in=' + userIds.join());
210210
for (const user of resp.results) {
211211
users.push(user);
212-
missing.delete(user);
212+
missing.delete(user.id);
213213
}
214214
}
215215
if (missing.size) {

0 commit comments

Comments
 (0)