Remove unnecessary code from MediaAttachment#set_type_and_extension.

Well, it seems unnecessary, anyway.
master
David Yip 2018-05-04 02:38:04 -05:00
parent c816701550
commit 106a5d7b83
No known key found for this signature in database
GPG Key ID: 7DA0036508FCC0CC
1 changed files with 0 additions and 3 deletions

View File

@ -200,9 +200,6 @@ class MediaAttachment < ApplicationRecord
def set_type_and_extension
self.type = VIDEO_MIME_TYPES.include?(file_content_type) ? :video : AUDIO_MIME_TYPES.include?(file_content_type) ? :audio : :image
extension = AUDIO_MIME_TYPES.include?(file_content_type) ? '.mp4' : appropriate_extension
basename = Paperclip::Interpolations.basename(file, :original)
file.instance_write :file_name, [basename, extension].delete_if(&:blank?).join('.')
end
def set_meta