mirror of
https://iceshrimp.dev/crimekillz/trashposs
synced 2024-11-25 10:19:06 +01:00
Fix polls & own reactions not showing in replies
This commit is contained in:
parent
8a218caec9
commit
d9c8c7af98
@ -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_),
|
||||
}
|
||||
: {}),
|
||||
}
|
||||
: {}),
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user