Don't scale or compress gifs

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

Fixes #196
pull/749/head
lilia 10 years ago
parent 8e54aa1401
commit f1309b71c1

@ -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);
}

Loading…
Cancel
Save