root 4 月之前
父節點
當前提交
3fb1e235fd
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      js/Common/awsupload.js

+ 1 - 1
js/Common/awsupload.js

@@ -159,7 +159,7 @@ async function awsuploadpart(filestate, file, uploadid, parts, key) {
         start = i * partsize;
         end = (i + 1) * partsize;
         if (!partarr.includes(i)) {
-            uploadpart = await uploadPart(file, key, uploadid, i, start, end);
+            uploadpart = await uploadPart(file, key, uploadid, i + 1, start, end);
             if (uploadpart.ETag != null) {
                 completeparts.push(uploadpart);
                 filestate.percent = parseInt((completeparts.length * 100) / count);