diff options
Diffstat (limited to 'app')
-rw-r--r-- | app/lib/emoji.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/lib/emoji.rb b/app/lib/emoji.rb index e444b6893..6de70e9b4 100644 --- a/app/lib/emoji.rb +++ b/app/lib/emoji.rb @@ -32,7 +32,7 @@ class Emoji def codepoint_to_unicode(codepoint) if codepoint.include?('-') - codepoint.split('-').map(&:hex).pack('U') + codepoint.split('-').map(&:hex).pack('U*') else [codepoint.hex].pack('U') end |