Replace `match?` with `match` for backwards compatibility with Ruby 2.3

This commit is contained in:
David Taylor 2017-07-29 19:21:11 +01:00
parent ce8acc9c26
commit 61fa0dbe0b
2 changed files with 2 additions and 2 deletions

View File

@ -41,7 +41,7 @@ class DiscourseChat::Channel < DiscourseChat::PluginModel
data.each do |key, value| data.each do |key, value|
regex_string = params.find{|p| p[:key] == key}[:regex] regex_string = params.find{|p| p[:key] == key}[:regex]
if !Regexp.new(regex_string).match?(value) if !Regexp.new(regex_string).match(value)
errors.add(:data, "data.#{key} is invalid") errors.add(:data, "data.#{key} is invalid")
end end