diff --git a/app/controllers/application_controller.rb b/app/controllers/application_controller.rb index 09089398..ea9fd5f3 100644 --- a/app/controllers/application_controller.rb +++ b/app/controllers/application_controller.rb @@ -14,7 +14,11 @@ def set_locale end def default_url_options - { :locale => I18n.locale } + unless user_signed_in? + { :locale => I18n.locale } + end + + {} end # Detect Browser's locale and use that by default