X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/29c1bab0e6dcc0f4b302fb06c62a8bf0a35f875c..e70396d70bff53c19e917d303f5b9d8f2abb7a3b:/app/helpers/application_helper.rb diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb index c7187c31d..2d78a5bf4 100644 --- a/app/helpers/application_helper.rb +++ b/app/helpers/application_helper.rb @@ -106,8 +106,8 @@ module ApplicationHelper def user_image(user, options = {}) options[:class] ||= "user_image" - if user.image - image_tag url_for_file_column(user, "image"), options + if user.image.file? + image_tag user.image.url, options else image_tag "anon_large.png", options end @@ -116,8 +116,8 @@ module ApplicationHelper def user_thumbnail(user, options = {}) options[:class] ||= "user_thumbnail" - if user.image - image_tag url_for_file_column(user, "image"), options + if user.image.file? + image_tag user.image.url, options else image_tag "anon_small.png", options end