diff options
Diffstat (limited to 'app/controllers')
-rw-r--r-- | app/controllers/api/v1/media_controller.rb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/app/controllers/api/v1/media_controller.rb b/app/controllers/api/v1/media_controller.rb index 4896534ad..7efe38bd8 100644 --- a/app/controllers/api/v1/media_controller.rb +++ b/app/controllers/api/v1/media_controller.rb @@ -4,5 +4,9 @@ class Api::V1::MediaController < ApiController def create @media = MediaAttachment.create!(account: current_user.account, file: params[:file]) + rescue Paperclip::Errors::NotIdentifiedByImageMagickError + render json: { error: 'File type of uploaded media could not be verified' }, status: 422 + rescue Paperclip::Error + render json: { error: 'Error processing thumbnail for uploaded media' }, status: 500 end end |