fix: pass current user into InstanceEntityService.packMany

This commit is contained in:
Hazel K 2024-08-01 08:24:50 -04:00
parent c344705d67
commit 858ba18876
3 changed files with 5 additions and 4 deletions

View file

@ -63,8 +63,9 @@ export class InstanceEntityService {
@bindThis
public packMany(
instances: MiInstance[],
me?: { id: MiUser['id']; } | null | undefined,
) {
return Promise.all(instances.map(x => this.pack(x)));
return Promise.all(instances.map(x => this.pack(x, me)));
}
}