Fix support for MP4 files that are actually M4V files (#11210)
Resolve #11187
This commit is contained in:
		
							parent
							
								
									f895bf1984
								
							
						
					
					
						commit
						06424786a1
					
				@ -60,7 +60,9 @@ module Attachmentable
 | 
				
			|||||||
  end
 | 
					  end
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  def calculated_content_type(attachment)
 | 
					  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
 | 
					  rescue Terrapin::CommandLineError
 | 
				
			||||||
    ''
 | 
					    ''
 | 
				
			||||||
  end
 | 
					  end
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user