fix ap/show

(cherry picked from commit 0f59adc436f80c495b4404807b0bd645da2b1db8)
This commit is contained in:
syuilo 2024-11-21 09:25:18 +09:00 committed by あわわわとーにゅ
parent 8c5a9c19d1
commit 710e719fc5
No known key found for this signature in database
GPG key ID: 6AFBBF529601C1DB

View file

@ -144,7 +144,7 @@ export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-
return await this.mergePack( return await this.mergePack(
me, me,
isActor(object) ? await this.apPersonService.createPerson(getApId(object)) : null, isActor(object) ? await this.apPersonService.createPerson(getApId(object)) : null,
isPost(object) ? await this.apNoteService.createNote(getApId(object), undefined, true) : null, isPost(object) ? await this.apNoteService.createNote(getApId(object), undefined, resolver) : null,
); );
} }