fix(emoji): map multi-unicode emoji properly (#2037)
* fix(emoji): map multi-unicode emoji properly * Regenerated emoji map
This commit is contained in:
parent
930eb1c413
commit
74606a1bd3
2 changed files with 1911 additions and 1911 deletions
|
@ -37,7 +37,7 @@ export async function loadEmoji(code: string) {
|
|||
emojimap = data
|
||||
}
|
||||
|
||||
const name = emojimap.codePointToName[`U+${code.toUpperCase()}`]
|
||||
const name = emojimap.codePointToName[`${code.toUpperCase()}`]
|
||||
if (!name) throw new Error(`codepoint ${code} not found in map`)
|
||||
|
||||
const b64 = emojimap.nameToBase64[name]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue