diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2018-12-24 19:12:00 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-24 19:12:00 +0100 |
commit | 2ee779dcd3aaec4f1384400ba68e2422ea878156 (patch) | |
tree | 12e039f5f71debae51f7715b310895c2e9288a21 /lib | |
parent | 5f387995d9ae6f89c93518518233c6d9874f6621 (diff) |
Update emoji codepoint mappings to v11.0 (#9618)
Diffstat (limited to 'lib')
-rw-r--r-- | lib/tasks/emojis.rake | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/tasks/emojis.rake b/lib/tasks/emojis.rake index 625a6e55d..892afd898 100644 --- a/lib/tasks/emojis.rake +++ b/lib/tasks/emojis.rake @@ -15,7 +15,7 @@ end namespace :emojis do desc 'Generate a unicode to filename mapping' task :generate do - source = 'http://www.unicode.org/Public/emoji/5.0/emoji-test.txt' + source = 'http://www.unicode.org/Public/emoji/11.0/emoji-test.txt' codes = [] dest = Rails.root.join('app', 'javascript', 'mastodon', 'features', 'emoji', 'emoji_map.json') @@ -43,6 +43,8 @@ namespace :emojis do existence_maps.each do |group| existing_one = group.key(true) + next if existing_one.nil? + group.each_key do |key| map[codepoints_to_unicode(key)] = codepoints_to_filename(existing_one) end |