summaryrefslogtreecommitdiff
path: root/app/mailers/notify.rb
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2018-03-07 16:07:09 +0200
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2018-03-07 16:07:09 +0200
commitaeab4e62637cd67f9c2ddd64589f3c9cca1ee895 (patch)
treed8a4d4f07c996aca0adbd8c75436f362f2e341af /app/mailers/notify.rb
parent001a28d04203feac77840b90024b769b442130b2 (diff)
downloadgitlab-ce-aeab4e62637cd67f9c2ddd64589f3c9cca1ee895.tar.gz
Use Project#full_name instead of name_with_namespace
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
Diffstat (limited to 'app/mailers/notify.rb')
-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 45d4fb451d8..e4212775956 100644
--- a/app/mailers/notify.rb
+++ b/app/mailers/notify.rb
@@ -117,7 +117,7 @@ class Notify < BaseMailer
if Gitlab::IncomingEmail.enabled? && @sent_notification
address = Mail::Address.new(Gitlab::IncomingEmail.reply_address(reply_key))
- address.display_name = @project.name_with_namespace
+ address.display_name = @project.full_name
headers['Reply-To'] = address