Make it possible to upload audio and video to Heroku app (#24866)
This commit is contained in:
parent
e675c10d19
commit
c0ea33e3fc
4 changed files with 6 additions and 3 deletions
|
@ -15,7 +15,8 @@ class Api::V1::MediaController < Api::BaseController
|
|||
render json: @media_attachment, serializer: REST::MediaAttachmentSerializer
|
||||
rescue Paperclip::Errors::NotIdentifiedByImageMagickError
|
||||
render json: file_type_error, status: 422
|
||||
rescue Paperclip::Error
|
||||
rescue Paperclip::Error => e
|
||||
Rails.logger.error "#{e.class}: #{e.message}"
|
||||
render json: processing_error, status: 500
|
||||
end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue