Skip to content
Snippets Groups Projects

Resolve "Change mime type of created s3 folders"

Merged Daniel Göbel requested to merge bugfix/120-change-mime-type-of-created-s3-folders into main
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
+ 1
1
@@ -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(() => {
Loading