Fix polls & own reactions not showing in replies

This commit is contained in:
Freeplay 2023-05-25 15:49:39 -04:00
parent 2375d2a8a6
commit 3f58162cf4

View file

@ -236,6 +236,12 @@ export const NoteRepository = db.getRepository(Note).extend({
uri: note.uri || undefined,
url: note.url || undefined,
updatedAt: note.updatedAt?.toISOString() || undefined,
poll: note.hasPoll ? populatePoll(note, meId) : undefined,
...(meId
? {
myReaction: populateMyReaction(note, meId, options?._hint_),
}
: {}),
...(opts.detail
? {
@ -252,14 +258,6 @@ export const NoteRepository = db.getRepository(Note).extend({
_hint_: options?._hint_,
})
: undefined,
poll: note.hasPoll ? populatePoll(note, meId) : undefined,
...(meId
? {
myReaction: populateMyReaction(note, meId, options?._hint_),
}
: {}),
}
: {}),
});