Don't scale or compress gifs
If a gif is too large, it's too large. Fixes #196
This commit is contained in:
parent
8e54aa1401
commit
f1309b71c1
1 changed files with 1 additions and 1 deletions
|
@ -46,7 +46,7 @@
|
||||||
},
|
},
|
||||||
|
|
||||||
autoScale: function(file) {
|
autoScale: function(file) {
|
||||||
if (file.type.split('/')[0] !== 'image') {
|
if (file.type.split('/')[0] !== 'image' || file.type === 'image/gif') {
|
||||||
// nothing to do
|
// nothing to do
|
||||||
return Promise.resolve(file);
|
return Promise.resolve(file);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue