[Glitch] Add WebP support

Port bcf34e31bd  to glitch-soc
lolsob-rspec
Thibaut Girka 2019-02-10 21:13:17 +01:00
parent 1c37ad108c
commit 538bae9f53
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ const loadImage = inputFile => new Promise((resolve, reject) => {
});
const getOrientation = (img, type = 'image/png') => new Promise(resolve => {
if (type !== 'image/jpeg') {
if (!['image/jpeg', 'image/webp'].includes(type)) {
resolve(1);
return;
}