From f36b42f1e12f23d959f15a3fb3ba65a0d975fca5 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Daniel=20G=C3=B6bel?= <dgoebel@techfak.uni-bielefeld.de>
Date: Wed, 22 May 2024 13:44:03 +0000
Subject: [PATCH] Use different MIME type when creating s3 folders

#120
---
 src/stores/s3objects.ts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/stores/s3objects.ts b/src/stores/s3objects.ts
index f92f016..42a631d 100644
--- a/src/stores/s3objects.ts
+++ b/src/stores/s3objects.ts
@@ -297,7 +297,7 @@ export const useS3ObjectStore = defineStore({
       const command = new PutObjectCommand({
         Bucket: bucketName,
         Body: "",
-        ContentType: "text/plain",
+        ContentType: "application/octet-stream",
         Key: key,
       });
       return this.client.send(command).then(() => {
-- 
GitLab