Fix admin lists

This commit is contained in:
Patrick Jentsch 2023-02-09 11:33:16 +01:00
parent 71d13d482b
commit b83f8e8fb9

View File

@ -8,7 +8,7 @@ class App {
this.socket.on('PATCH', (patch) => {this.onPatch(patch);}); this.socket.on('PATCH', (patch) => {this.onPatch(patch);});
} }
getUser(userId, backrefs=false, relationships=false) { getUser(userId, backrefs=true, relationships=true) {
if (userId in this.data.promises.getUser) { if (userId in this.data.promises.getUser) {
return this.data.promises.getUser[userId]; return this.data.promises.getUser[userId];
} }