Some emojis are in CHAR_CATEGORY_GENERAL_OTHER_TYPES
Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
parent
85570abc9a
commit
ee7eb6f2b3
|
@ -81,7 +81,8 @@ class EmojiService {
|
||||||
// just continue and check the next character
|
// just continue and check the next character
|
||||||
if ($codePointType === \IntlChar::CHAR_CATEGORY_MODIFIER_SYMBOL ||
|
if ($codePointType === \IntlChar::CHAR_CATEGORY_MODIFIER_SYMBOL ||
|
||||||
$codePointType === \IntlChar::CHAR_CATEGORY_MODIFIER_LETTER ||
|
$codePointType === \IntlChar::CHAR_CATEGORY_MODIFIER_LETTER ||
|
||||||
$codePointType === \IntlChar::CHAR_CATEGORY_OTHER_SYMBOL) {
|
$codePointType === \IntlChar::CHAR_CATEGORY_OTHER_SYMBOL ||
|
||||||
|
$codePointType === \IntlChar::CHAR_CATEGORY_GENERAL_OTHER_TYPES) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue