diff options
Diffstat (limited to 'app/mailers')
-rw-r--r-- | app/mailers/notification_mailer.rb | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/app/mailers/notification_mailer.rb b/app/mailers/notification_mailer.rb index a163edd3c..2bfc77721 100644 --- a/app/mailers/notification_mailer.rb +++ b/app/mailers/notification_mailer.rb @@ -60,11 +60,11 @@ class NotificationMailer < ApplicationMailer I18n.with_locale(@me.user.locale || I18n.default_locale) do mail to: @me.user.email, - subject: I18n.t( - :subject, - scope: [:notification_mailer, :digest], - count: @notifications.size - ) + subject: I18n.t( + :subject, + scope: [:notification_mailer, :digest], + count: @notifications.size + ) end end end |