2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-07 12:02:53 +08:00

FIX: Make read only errors respect the request format (#16741)

This commit is contained in:
Daniel Waterworth 2022-05-12 17:04:49 -05:00 committed by GitHub
parent 18ebe2fc28
commit 1d7e423f86
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 1 deletions

View file

@ -246,7 +246,14 @@ class ApplicationController < ActionController::Base
rescue_from Discourse::ReadOnly do
unless response_body
render_json_error I18n.t('read_only_mode_enabled'), type: :read_only, status: 503
respond_to do |format|
format.json do
render_json_error I18n.t('read_only_mode_enabled'), type: :read_only, status: 503
end
format.html do
render status: 503, layout: 'no_ember', template: 'exceptions/read_only'
end
end
end
end