diff --git a/app/controllers/exceptions_controller.rb b/app/controllers/exceptions_controller.rb index d5f21f8cb67..929509479a0 100644 --- a/app/controllers/exceptions_controller.rb +++ b/app/controllers/exceptions_controller.rb @@ -1,20 +1,21 @@ class ExceptionsController < ApplicationController skip_before_filter :check_xhr, :preload_json + before_action :hide_google def not_found - @hide_google = true if SiteSetting.login_required - # centralize all rendering of 404 into app controller raise Discourse::NotFound end # Give us an endpoint to use for 404 content in the ember app def not_found_body - - # Don't show google search if it's embedded in the Ember app - @hide_google = true - render html: build_not_found_page(200, false) end + private + + def hide_google + @hide_google = true if SiteSetting.login_required + end + end diff --git a/app/views/exceptions/not_found.html.erb b/app/views/exceptions/not_found.html.erb index 1298ec5449d..f7177c1eb3d 100644 --- a/app/views/exceptions/not_found.html.erb +++ b/app/views/exceptions/not_found.html.erb @@ -30,9 +30,9 @@