Skip to content
Snippets Groups Projects
Unverified Commit ebf2fef0 authored by Eugen Rochko's avatar Eugen Rochko Committed by GitHub
Browse files

Catch ActionController::UnknownFormat and return HTTP 406 (#7621)

An error like that should not appear in production error log.
parent d87649db
No related branches found
No related tags found
No related merge requests found
......@@ -20,6 +20,7 @@ class ApplicationController < ActionController::Base
rescue_from ActionController::RoutingError, with: :not_found
rescue_from ActiveRecord::RecordNotFound, with: :not_found
rescue_from ActionController::InvalidAuthenticityToken, with: :unprocessable_entity
rescue_from ActionController::UnknownFormat, with: :not_acceptable
rescue_from Mastodon::NotPermittedError, with: :forbidden
before_action :store_current_location, except: :raise_not_found, unless: :devise_controller?
......@@ -73,6 +74,10 @@ class ApplicationController < ActionController::Base
respond_with_error(422)
end
def not_acceptable
respond_with_error(406)
end
def single_user_mode?
@single_user_mode ||= Rails.configuration.x.single_user_mode && Account.exists?
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment