Use the configured host name for user image URLs

This commit is contained in:
Tom Hughes 2019-07-16 22:41:37 +01:00
parent 91a37235ac
commit 40ac2aa528

View file

@ -44,7 +44,7 @@ module UserHelper
if user.image_use_gravatar
user_gravatar_url(user, options)
elsif user.avatar.attached?
polymorphic_url(user.avatar.variant(:resize => "100x100>"))
polymorphic_url(user.avatar.variant(:resize => "100x100>"), :host => Settings.server_url)
else
image_url("avatar_large.png")
end