Fix error at emoji_compressed in Firefox ESR (#5241)
This commit is contained in:
parent
daa59dd454
commit
6f2d88dd28
|
@ -54,7 +54,9 @@ Object.keys(emojiMap).forEach(key => {
|
|||
if (typeof shortcode === 'undefined') {
|
||||
emojisWithoutShortCodes.push(filenameData);
|
||||
} else {
|
||||
shortCodesToEmojiData[shortcode] = shortCodesToEmojiData[shortcode] || [[]];
|
||||
if (!Array.isArray(shortCodesToEmojiData[shortcode])) {
|
||||
shortCodesToEmojiData[shortcode] = [[]];
|
||||
}
|
||||
shortCodesToEmojiData[shortcode][0].push(filenameData);
|
||||
}
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue