mirror of
https://github.com/element-hq/element-web
synced 2024-11-25 18:55:58 +03:00
Ignore VS16 char in RTE
Signed-off-by: Stefan Parviainen <pafcu@iki.fi>
This commit is contained in:
parent
2ba0a801c4
commit
8266286e99
1 changed files with 6 additions and 0 deletions
|
@ -67,8 +67,14 @@ function unicodeToEmojiUri(str) {
|
|||
// if the unicodeChar doesnt exist just return the entire match
|
||||
return unicodeChar;
|
||||
} else {
|
||||
// Remove variant selector VS16 (explicitly emoji) as it is unnecessary and leads to an incorrect URL below
|
||||
if(unicodeChar.length == 2 && unicodeChar[1] == '\ufe0f') {
|
||||
unicodeChar = unicodeChar[0];
|
||||
}
|
||||
|
||||
// get the unicode codepoint from the actual char
|
||||
unicode = emojione.jsEscapeMap[unicodeChar];
|
||||
|
||||
return emojione.imagePathSVG+unicode+'.svg'+emojione.cacheBustParam;
|
||||
}
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue