root 4 months ago
parent
commit
3fb1e235fd
1 changed files with 1 additions and 1 deletions
  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);