]> git.openstreetmap.org Git - rails.git/blobdiff - app/models/notifier.rb
Dressed up note comment messages
[rails.git] / app / models / notifier.rb
index d7fa66c4ad431332455b354528cd10cef97a5aaa..73cbbad541c2040fa1f813211152c43335b60e73 100644 (file)
@@ -151,6 +151,9 @@ class Notifier < ActionMailer::Base
                      I18n.t("notifier.note_comment_notification.anonymous")
                    end
 
+      @user_message_author = @commenter
+      attach_user_avatar(comment.author)
+
       subject = if @owner
                   I18n.t("notifier.note_comment_notification.#{@event}.subject_own", :commenter => @commenter)
                 else
@@ -202,8 +205,8 @@ class Notifier < ActionMailer::Base
   end
 
   def user_avatar_file_path(user)
-    image = user.image
-    if image.file?
+    image = user && user.image
+    if image && image.file?
       return image.path(:small)
     else
       return "#{Rails.root}/app/assets/images/users/images/small.png"