Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-01-15 15:37:20 +0400
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-01-15 15:37:20 +0400
commit211c06e4191395d7c23a9a523ef232506d786ab6 (patch)
tree1a3fcd421b4746a284f391f14673d4b2e3372258 /app/mailers
parent6ddacaf9bfe02378e610ce277cd901097dcf6fdd (diff)
Fix few test and notify for commit author
Diffstat (limited to 'app/mailers')
-rw-r--r--app/mailers/notify.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/mailers/notify.rb b/app/mailers/notify.rb
index 706d7a8e4ed..0ed06475fa8 100644
--- a/app/mailers/notify.rb
+++ b/app/mailers/notify.rb
@@ -68,7 +68,7 @@ class Notify < ActionMailer::Base
@commit = @note.noteable
@commit = CommitDecorator.decorate(@commit)
@project = @note.project
- mail(to: recipient(commit_autor_email), subject: subject("note for commit #{@commit.short_id}", @commit.title))
+ mail(to: commit_autor_email, subject: subject("note for commit #{@commit.short_id}", @commit.title))
end
def note_issue_email(recipient_id, note_id)