mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-22 18:48:06 +01:00
Fix ogg vorbis files with a cover art not being correctly processed (#14255)
This commit is contained in:
parent
6e25574ce5
commit
701e5b9a19
1 changed files with 10 additions and 2 deletions
|
@ -2,8 +2,16 @@
|
||||||
|
|
||||||
module Paperclip
|
module Paperclip
|
||||||
module MediaTypeSpoofDetectorExtensions
|
module MediaTypeSpoofDetectorExtensions
|
||||||
def calculated_content_type
|
def mapping_override_mismatch?
|
||||||
@calculated_content_type ||= type_from_mime_magic || type_from_file_command
|
!Array(mapped_content_type).include?(calculated_content_type) && !Array(mapped_content_type).include?(type_from_mime_magic)
|
||||||
|
end
|
||||||
|
|
||||||
|
def calculated_media_type_from_mime_magic
|
||||||
|
@calculated_media_type_from_mime_magic ||= type_from_mime_magic.split('/').first
|
||||||
|
end
|
||||||
|
|
||||||
|
def calculated_type_mismatch?
|
||||||
|
!media_types_from_name.include?(calculated_media_type) && !media_types_from_name.include?(calculated_media_type_from_mime_magic)
|
||||||
end
|
end
|
||||||
|
|
||||||
def type_from_mime_magic
|
def type_from_mime_magic
|
||||||
|
|
Loading…
Reference in a new issue