Skip to content

Commit

Permalink
fix ap/show
Browse files Browse the repository at this point in the history
  • Loading branch information
syuilo authored and HotoRas committed Nov 24, 2024
1 parent 67badfc commit 2a83c44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/backend/src/server/api/endpoints/ap/show.ts
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-
return await this.mergePack(
me,
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,
);
}

Expand Down

0 comments on commit 2a83c44

Please sign in to comment.