From cf0da967912b8e133e5df5487bfd3c5aa71dd13e Mon Sep 17 00:00:00 2001 From: Josh Perez <60019601+josh-signal@users.noreply.github.com> Date: Thu, 30 Sep 2021 12:43:27 -0400 Subject: [PATCH] Save image/jpeg images as .jpg --- ts/util/handleImageAttachment.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ts/util/handleImageAttachment.ts b/ts/util/handleImageAttachment.ts index df6844388a..0b7a8508b9 100644 --- a/ts/util/handleImageAttachment.ts +++ b/ts/util/handleImageAttachment.ts @@ -93,6 +93,6 @@ export async function autoScale({ return { contentType: IMAGE_JPEG, file: blob, - fileName: `${name}.jpeg`, + fileName: `${name}.jpg`, }; }