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
path: root/lib
diff options
context:
space:
mode:
authorDouwe Maan <douwe@gitlab.com>2015-09-20 19:18:39 +0300
committerDouwe Maan <douwe@gitlab.com>2015-09-20 19:18:39 +0300
commit3377808193e8571b028fd05f009a7d1089dcc916 (patch)
tree99d6b29ea58bed563b5ef453450485f49e8da2bf /lib
parent11bbc06b4bbcb678f3ee6b8f1d143ed86d25a76c (diff)
Fix reply by email for comments on a specific line in a diff/commit.
Diffstat (limited to 'lib')
-rw-r--r--lib/gitlab/email/receiver.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/gitlab/email/receiver.rb b/lib/gitlab/email/receiver.rb
index 355fbd27898..341b557858f 100644
--- a/lib/gitlab/email/receiver.rb
+++ b/lib/gitlab/email/receiver.rb
@@ -98,7 +98,8 @@ module Gitlab
note: reply,
noteable_type: sent_notification.noteable_type,
noteable_id: sent_notification.noteable_id,
- commit_id: sent_notification.commit_id
+ commit_id: sent_notification.commit_id,
+ line_code: sent_notification.line_code
).execute
end
end