diff --git a/packages/backend/src/core/entities/NoteEntityService.ts b/packages/backend/src/core/entities/NoteEntityService.ts index 09536ce33..498cf4721 100644 --- a/packages/backend/src/core/entities/NoteEntityService.ts +++ b/packages/backend/src/core/entities/NoteEntityService.ts @@ -348,7 +348,7 @@ export class NoteEntityService implements OnModuleInit { url: note.url ?? undefined, poll: note.hasPoll ? this.populatePoll(note, meId) : undefined, ...(meId ? { - myReaction: this.populateMyReaction(note, meId, options?._hint_), + myReaction: this.populateMyReaction(note.id, meId, options?._hint_), } : {}), ...(opts.detail ? { @@ -363,12 +363,6 @@ export class NoteEntityService implements OnModuleInit { detail: true, _hint_: options?._hint_, }) : undefined, - - poll: note.hasPoll ? this.populatePoll(note, meId) : undefined, - - ...(meId ? { - myReaction: this.populateMyReaction(note.id, meId, options?._hint_), - } : {}), } : {}), });