only the host part of an email address is case insensitive

This commit is contained in:
Régis Hanol 2013-08-14 19:31:35 +02:00
parent 8fa9c51bf4
commit 5ca187ba57
1 changed files with 1 additions and 1 deletions

View File

@ -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