diff options
Diffstat (limited to 'app/mailers')
-rw-r--r-- | app/mailers/repository_check_mailer.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app/mailers/repository_check_mailer.rb b/app/mailers/repository_check_mailer.rb index 21db2fe04a0..11a0c0b7700 100644 --- a/app/mailers/repository_check_mailer.rb +++ b/app/mailers/repository_check_mailer.rb @@ -1,9 +1,9 @@ class RepositoryCheckMailer < BaseMailer def notify(failed_count) - if failed_count == 1 - @message = "One project failed its last repository check" + @message = if failed_count == 1 + "One project failed its last repository check" else - @message = "#{failed_count} projects failed their last repository check" + "#{failed_count} projects failed their last repository check" end mail( |