mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-22 01:47:39 -07:00
Fix: リアクションのカスタム絵文字の情報がNoteに添付されない (#4574)
This commit is contained in:
parent
6b66428a03
commit
041fe51ea4
1 changed files with 1 additions and 1 deletions
|
@ -259,7 +259,7 @@ export const pack = async (
|
|||
fields: { _id: false }
|
||||
});
|
||||
} else {
|
||||
_note.emojis = unique(concat([_note.emojis, Object.keys(_note.reactionCounts)]));
|
||||
_note.emojis = unique(concat([_note.emojis, Object.keys(_note.reactionCounts).map(x => x.replace(/:/g, ''))]));
|
||||
|
||||
_note.emojis = Emoji.find({
|
||||
name: { $in: _note.emojis },
|
||||
|
|
Loading…
Reference in a new issue