Skip to content
Snippets Groups Projects
Verified Commit f36b42f1 authored by Daniel Göbel's avatar Daniel Göbel
Browse files

Use different MIME type when creating s3 folders

parent f8eb4460
No related branches found
No related tags found
1 merge request!117Resolve "Change mime type of created s3 folders"
Pipeline #53229 passed
......@@ -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(() => {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment