Merge pull request #1333 from fabianoleittes/fix_type_url

Fix url not to be nil
This commit is contained in:
Sam 2013-08-14 20:04:00 -07:00
commit b55c9e391d
1 changed files with 1 additions and 1 deletions

View File

@ -322,7 +322,7 @@ class User < ActiveRecord::Base
if SiteSetting.allow_uploaded_avatars? && use_uploaded_avatar
# the avatars might take a while to generate
# so return the url of the original image in the meantime
uploaded_avatar_template.present? ? uploaded_avatar_template : uploaded_avatar.url
uploaded_avatar_template.present? ? uploaded_avatar_template : uploaded_avatar.try(:url)
else
User.gravatar_template(email)
end