FIX: Allow 404 pages to use the current theme

This commit is contained in:
Robin Ward 2018-02-14 15:29:01 -05:00
parent dffdff91a6
commit a3e5a31674
1 changed files with 2 additions and 0 deletions

View File

@ -192,7 +192,9 @@ class ApplicationController < ActionController::Base
render_json_error message, type: type, status: status_code
else
begin
# 404 pages won't have the session and theme_keys without these:
current_user
handle_theme
rescue Discourse::InvalidAccess
return render plain: message, status: status_code
end