make robocop 🤖 happy

This commit is contained in:
Régis Hanol 2017-12-12 11:33:35 +01:00
parent 62a5b174e1
commit af3c153687
1 changed files with 1 additions and 1 deletions

View File

@ -166,7 +166,7 @@ class User < ActiveRecord::Base
SiteSetting.min_username_length.to_i..SiteSetting.max_username_length.to_i
end
def self.username_available?(username, email=nil)
def self.username_available?(username, email = nil)
lower = username.downcase
return false if reserved_username?(lower)
return true if !User.exists?(username_lower: lower)