summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 666cef4d3cb..3a4c9cf73b9 100644
--- a/app/mailers/notify.rb
+++ b/app/mailers/notify.rb
@@ -56,7 +56,7 @@ class Notify < ActionMailer::Base
# => "Lorem ipsum | Dolor sit amet"
def subject(*extra)
subject = ""
- subject << "#{@project.name_with_namespace} | " if @project
+ subject << "#{@project.name} | " if @project
subject << extra.join(' | ') if extra.present?
subject
end