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:
		@@ -39,7 +39,7 @@ class Glitch::KeywordMute < ApplicationRecord
 | 
				
			|||||||
    end
 | 
					    end
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    def =~(str)
 | 
					    def =~(str)
 | 
				
			||||||
      regex ? regex =~ str : nil
 | 
					      regex =~ str
 | 
				
			||||||
    end
 | 
					    end
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    private
 | 
					    private
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user