Skip to content

Commit

Permalink
Fix support for MP4 files that are actually M4V files (mastodon#11210)
Browse files Browse the repository at this point in the history
  • Loading branch information
Gargron authored Jun 30, 2019
1 parent f02c8d2 commit 571352b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion app/models/concerns/attachmentable.rb
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,9 @@ def appropriate_extension(attachment)
end

def calculated_content_type(attachment)
Paperclip.run('file', '-b --mime :file', file: attachment.queued_for_write[:original].path).split(/[:;\s]+/).first.chomp
content_type = Paperclip.run('file', '-b --mime :file', file: attachment.queued_for_write[:original].path).split(/[:;\s]+/).first.chomp
content_type = 'video/mp4' if content_type == 'video/x-m4v'
content_type
rescue Terrapin::CommandLineError
''
end
Expand Down

0 comments on commit 571352b

Please sign in to comment.