Escape metacharacters in non-whole-word keyword mutes. Fixes #533.
Also addresses #463.
This commit is contained in:
@@ -50,7 +50,7 @@ class Glitch::KeywordMute < ApplicationRecord
|
||||
end
|
||||
|
||||
def matches?(str)
|
||||
str =~ (whole_word ? boundary_regex_for_keyword : /#{keyword}/i)
|
||||
str =~ (whole_word ? boundary_regex_for_keyword : /#{Regexp.escape(keyword)}/i)
|
||||
end
|
||||
end
|
||||
|
||||
|
Reference in New Issue
Block a user