Emoji: Only accept RGI emoji.
"recommended for general interchange"
This commit is contained in:
parent
3b3cf63118
commit
8fb259e739
2 changed files with 9 additions and 2 deletions
|
|
@ -11,7 +11,11 @@ defmodule Pleroma.EmojiTest do
|
|||
refute Emoji.is_unicode_emoji?("X")
|
||||
refute Emoji.is_unicode_emoji?("ね")
|
||||
|
||||
assert Emoji.is_unicode_emoji?("☂")
|
||||
# Only accept fully-qualified (RGI) emoji
|
||||
# See http://www.unicode.org/reports/tr51/
|
||||
refute Emoji.is_unicode_emoji?("❤")
|
||||
refute Emoji.is_unicode_emoji?("☂")
|
||||
|
||||
assert Emoji.is_unicode_emoji?("🥺")
|
||||
assert Emoji.is_unicode_emoji?("🤰")
|
||||
assert Emoji.is_unicode_emoji?("❤️")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue