mirror of
https://github.com/discourse/discourse.git
synced 2025-02-25 18:55:32 -06:00
FEATURE: do not replace ↔ with an emoji
↔ technically can be an emoji, but usually will not be used in that way
This commit is contained in:
@@ -149,9 +149,10 @@ class Emoji
|
||||
name = e['name']
|
||||
|
||||
# special cased as we prefer to keep these as symbols
|
||||
next if name == 'registered'.freeze
|
||||
next if name == 'copyright'.freeze
|
||||
next if name == 'tm'.freeze
|
||||
next if name == 'registered'
|
||||
next if name == 'copyright'
|
||||
next if name == 'tm'
|
||||
next if name == 'left_right_arrow'
|
||||
|
||||
code = replacement_code(e['code'])
|
||||
next unless code
|
||||
|
||||
Reference in New Issue
Block a user