Fix: リアクションのカスタム絵文字の情報がNoteに添付されない (#4574)

This commit is contained in:
MeiMei 2019-03-26 22:22:39 +09:00 committed by syuilo
parent 25473222cc
commit 81739af7cb

View file

@ -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 },