mirror of
https://github.com/mastodon/mastodon.git
synced 2024-11-15 03:15:32 +00:00
Escape metachars in keywords
This commit is contained in:
parent
cb62935c0b
commit
b25278180a
|
@ -70,7 +70,7 @@ class Glitch::KeywordMute < ApplicationRecord
|
|||
|
||||
def make_regex_text
|
||||
kws = keywords.map! do |whole_word, keyword|
|
||||
whole_word ? boundary_regex_for_keyword(keyword) : /(?i:#{keyword})/
|
||||
whole_word ? boundary_regex_for_keyword(keyword) : /(?i:#{Regexp.escape(keyword)})/
|
||||
end
|
||||
|
||||
Regexp.union(kws).source
|
||||
|
|
Loading…
Reference in a new issue