Don't scale or compress gifs

If a gif is too large, it's too large.

Fixes #196
This commit is contained in:
lilia 2015-03-11 20:20:54 -07:00
parent 8e54aa1401
commit f1309b71c1

View file

@ -46,7 +46,7 @@
},
autoScale: function(file) {
if (file.type.split('/')[0] !== 'image') {
if (file.type.split('/')[0] !== 'image' || file.type === 'image/gif') {
// nothing to do
return Promise.resolve(file);
}