Skip to content
Snippets Groups Projects
Commit 41c74cec authored by Stefan Kahlhöfer's avatar Stefan Kahlhöfer Committed by Rubén Dávila
Browse files

Downcased user or email search for avatar_icon.

parent 3a227b5a
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -72,7 +72,7 @@ module ApplicationHelper
if user_or_email.is_a?(User)
user = user_or_email
else
user = User.find_by(email: user_or_email)
user = User.find_by(email: user_or_email.downcase)
end
 
if user
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment