Save image/jpeg images as .jpg

This commit is contained in:
Josh Perez 2021-09-30 12:43:27 -04:00 committed by GitHub
parent ffe7cc578b
commit cf0da96791
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -93,6 +93,6 @@ export async function autoScale({
return {
contentType: IMAGE_JPEG,
file: blob,
fileName: `${name}.jpeg`,
fileName: `${name}.jpg`,
};
}