Commit e36c0c14 authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

Merge pull request #3950 from bbodenmiller/patch-4

fixes #3115 and adds support for gif bmp & tiff images
parents ac148c50 fb4a38f6
......@@ -8,12 +8,12 @@ class AttachmentUploader < CarrierWave::Uploader::Base
end
def image?
img_ext = %w(png jpg jpeg)
img_ext = %w(png jpg jpeg gif bmp tiff)
if file.respond_to?(:extension)
img_ext.include?(file.extension)
img_ext.include?(file.extension.downcase)
else
# Not all CarrierWave storages respond to :extension
ext = file.path.split('.').last
ext = file.path.split('.').last.downcase
img_ext.include?(ext)
end
rescue
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment