From 7a7d12d27f16370c3789aa97514da25c6e91ae4c Mon Sep 17 00:00:00 2001 From: Matt Jankowski Date: Mon, 8 May 2017 17:10:50 -0400 Subject: Delegate Account#user_locale method and allow nil (#2927) --- app/mailers/notification_mailer.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'app/mailers') diff --git a/app/mailers/notification_mailer.rb b/app/mailers/notification_mailer.rb index f308c403b..a944db137 100644 --- a/app/mailers/notification_mailer.rb +++ b/app/mailers/notification_mailer.rb @@ -71,7 +71,7 @@ class NotificationMailer < ApplicationMailer private def locale_for_account(account) - I18n.with_locale(account.user.locale || I18n.default_locale) do + I18n.with_locale(account.user_locale || I18n.default_locale) do yield end end -- cgit