mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-22 14:08:07 +01:00
allow dashes in emoji shortcodes
This commit is contained in:
parent
fd8b04e9e7
commit
8ad361cb29
1 changed files with 1 additions and 1 deletions
|
@ -27,7 +27,7 @@ class CustomEmoji < ApplicationRecord
|
|||
LOCAL_LIMIT = (ENV['MAX_EMOJI_SIZE'] || 256.kilobytes).to_i
|
||||
LIMIT = [LOCAL_LIMIT, (ENV['MAX_REMOTE_EMOJI_SIZE'] || 256.kilobytes).to_i].max
|
||||
|
||||
SHORTCODE_RE_FRAGMENT = '[a-zA-Z0-9_]{2,}'
|
||||
SHORTCODE_RE_FRAGMENT = '[a-zA-Z0-9_-]{2,}'
|
||||
|
||||
SCAN_RE = /(?<=[^[:alnum:]:]|\n|^)
|
||||
:(#{SHORTCODE_RE_FRAGMENT}):
|
||||
|
|
Loading…
Reference in a new issue