mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2025-03-04 07:18:50 -07:00
Fix polls & own reactions not showing in replies
This commit is contained in:
parent
8a218caec9
commit
d9c8c7af98
1 changed files with 6 additions and 8 deletions
|
@ -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…
Add table
Reference in a new issue