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 {
|
||||
type: "PUT",
|
||||
dataType: "xml",
|
||||
autoUpload: false
|
||||
autoUpload: false,
|
||||
multipart: false
|
||||
};
|
||||
},
|
||||
|
||||
|
|
Loading…
Reference in New Issue