]> git.openstreetmap.org Git - rails.git/blobdiff - app/models/notifier.rb
Add methods to get a bug's author details from the first comment
[rails.git] / app / models / notifier.rb
index b7cb3454d052eefa977f78be593d1384a9db6a74..e8c9259cbe2aa7107c08ff7bc803d8cabf86e3b3 100644 (file)
@@ -97,7 +97,7 @@ class Notifier < ActionMailer::Base
 
   def bug_comment_notification(bug_comment, recipient)
     common_headers recipient
-    owner = (recipient == bug_comment.map_bug.comments.first.user);
+    owner = (recipient == bug_comment.map_bug.author);
     subject I18n.t('notifier.map_bug_plain.subject_own', :commenter => bug_comment.author_name) if owner
     subject I18n.t('notifier.map_bug_plain.subject_other', :commenter => bug_comment.author_name) unless owner