only the host part of an email address is case insensitive
This commit is contained in:
parent
8fa9c51bf4
commit
5ca187ba57
|
@ -299,7 +299,7 @@ class User < ActiveRecord::Base
|
|||
|
||||
def self.avatar_template(email)
|
||||
user = User.select([:email, :use_uploaded_avatar, :uploaded_avatar_template, :uploaded_avatar_id])
|
||||
.where(['lower(email) = lower(?)', email])
|
||||
.where(email: Email.downcase(email))
|
||||
.first
|
||||
user.avatar_template if user.present?
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue