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