This commit is contained in:
mattyatea 2024-05-06 23:31:07 +09:00
parent b0d4294644
commit b2757484df
1 changed files with 1 additions and 1 deletions

View File

@ -468,7 +468,7 @@ export class ApPersonService implements OnModuleInit {
movedToUri: person.movedTo ?? null,
alsoKnownAs: person.alsoKnownAs ?? null,
isExplorable: person.discoverable,
...(await this.resolveAvatarAndBanner(exist, host, person.icon, person.image).catch(() => ({}))),
...(await this.resolveAvatarAndBanner(exist, person.icon, person.image).catch(() => ({}))),
} as Partial<MiRemoteUser> & Pick<MiRemoteUser, 'isBot' | 'isCat' | 'isLocked' | 'movedToUri' | 'alsoKnownAs' | 'isExplorable'>;
const moving = ((): boolean => {