mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 08:09:13 -05:00
Fix url not to be nil
This commit is contained in:
parent
8fa9c51bf4
commit
4df8babb9a
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue