mirror of
https://github.com/discourse/discourse.git
synced 2025-05-28 21:57:50 +08:00
DEV: Refactor to add Custom emoji sanitization (#24368)
Co-authored-by: Joffrey JAFFEUX <j.jaffeux@gmail.com>
This commit is contained in:

committed by
GitHub

parent
51e02e0d31
commit
7992d7a65a
@ -718,7 +718,7 @@ class Plugin::Instance
|
||||
end
|
||||
|
||||
def register_emoji(name, url, group = Emoji::DEFAULT_GROUP)
|
||||
name = name.gsub(/[^a-z0-9]+/i, "_").gsub(/_{2,}/, "_").downcase
|
||||
name = Emoji.sanitize_emoji_name(name)
|
||||
Plugin::CustomEmoji.register(name, url, group)
|
||||
Emoji.clear_cache
|
||||
end
|
||||
|
Reference in New Issue
Block a user