Fix uncaught errors in media proxy controller (#11811)

lolsob-rspec
Eugen Rochko 2019-09-12 01:51:12 +02:00 committed by GitHub
parent a74b17635b
commit 605a4e654a
1 changed files with 2 additions and 0 deletions

View File

@ -8,6 +8,8 @@ class MediaProxyController < ApplicationController
before_action :authenticate_user!, if: :whitelist_mode?
rescue_from ActiveRecord::RecordInvalid, with: :not_found
rescue_from Mastodon::UnexpectedResponseError, with: :not_found
rescue_from HTTP::TimeoutError, HTTP::ConnectionError, OpenSSL::SSL::SSLError, with: :internal_server_error
def show
RedisLock.acquire(lock_options) do |lock|