mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02:00
Remove nil check in Glitch::KeywordMute#=~.
@regex can no longer be nil, so we don't need to check it.
This commit is contained in:
parent
d9485e6497
commit
e40fe4092d
@ -39,7 +39,7 @@ class Glitch::KeywordMute < ApplicationRecord
|
||||
end
|
||||
|
||||
def =~(str)
|
||||
regex ? regex =~ str : nil
|
||||
regex =~ str
|
||||
end
|
||||
|
||||
private
|
||||
|
Loading…
Reference in New Issue
Block a user