Fix: リアクションのカスタム絵文字の情報がNoteに添付されない (#4574)
This commit is contained in:
parent
25473222cc
commit
81739af7cb
|
@ -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 New Issue