瀏覽代碼

s3/multipart: Emit error if createMultipartUpload fails.

Renée Kooi 7 年之前
父節點
當前提交
e0f48d3884
共有 1 個文件被更改,包括 2 次插入0 次删除
  1. 2 0
      src/plugins/AwsS3/MultipartUploader.js

+ 2 - 0
src/plugins/AwsS3/MultipartUploader.js

@@ -66,6 +66,8 @@ class MultipartUploader {
       this.options.onStart(result)
       this.options.onStart(result)
     }).then(() => {
     }).then(() => {
       this._uploadParts()
       this._uploadParts()
+    }).catch((err) => {
+      this._onError(err)
     })
     })
   }
   }