mirror of
https://github.com/discourse/discourse.git
synced 2025-03-03 22:34:27 +08: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:
parent
081aa6ad2b
commit
32784ad11a
@ -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
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user