X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/6c202448ade514cd5ecca7175555011c851735e9..783b5e3729228908d7404ae7404af1023501a906:/app/mailers/notifier.rb diff --git a/app/mailers/notifier.rb b/app/mailers/notifier.rb index bd2c83b56..4509f1011 100644 --- a/app/mailers/notifier.rb +++ b/app/mailers/notifier.rb @@ -187,16 +187,7 @@ class Notifier < ActionMailer::Base if avatar&.attached? return avatar.variant(:resize => "50x50>").blob.download else - return File.read(user_avatar_file_path(user)) - end - end - - def user_avatar_file_path(user) - image = user&.image - if image&.file? - return image.path(:small) - else - return Rails.root.join("app", "assets", "images", "avatar_small.png") + return File.read(Rails.root.join("app", "assets", "images", "avatar_small.png")) end end