X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/3cfffc2258621558e1147ceaf63980a7f6ed414b..91a37235ac748df7dc241b215790d6cbecd652f3:/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