mirror of
https://github.com/discourse/discourse.git
synced 2025-02-25 18:55:32 -06:00
FIX: Disable multipart backup uploads to S3
Multipart upload from within the browser result in corrupt files on S3.
This commit is contained in:
@@ -28,7 +28,8 @@ export default Em.Component.extend(UploadMixin, {
|
|||||||
return {
|
return {
|
||||||
type: "PUT",
|
type: "PUT",
|
||||||
dataType: "xml",
|
dataType: "xml",
|
||||||
autoUpload: false
|
autoUpload: false,
|
||||||
|
multipart: false
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user