From a2858602813c99a83b94c9090ce662fff9cc0f7d Mon Sep 17 00:00:00 2001 From: florian Date: Sat, 8 Jul 2023 09:25:26 +0200 Subject: [PATCH] fix: Wrong content type --- src/s3.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/s3.ts b/src/s3.ts index 264d93c..db43efd 100644 --- a/src/s3.ts +++ b/src/s3.ts @@ -36,7 +36,7 @@ export const uploadFile = async ( Key: targetKey, Body: fileStream, ACL: 'public-read', - ContentType: 'video/mp2t', + ContentType: contentType, }) ); };