From c6d6154a7d63e4c71c52723c7465b526a832fb3b Mon Sep 17 00:00:00 2001 From: MyController Date: Tue, 12 Dec 2023 11:52:55 +0800 Subject: [PATCH] bugfix : simultaneous chunk upload in DropZone and resumable.js --- src/Save/ParallelSave.php | 1 - 1 file changed, 1 deletion(-) diff --git a/src/Save/ParallelSave.php b/src/Save/ParallelSave.php index eacbf42..f01716f 100644 --- a/src/Save/ParallelSave.php +++ b/src/Save/ParallelSave.php @@ -79,7 +79,6 @@ protected function handleChunkFile($file) $percentage = floor((count($this->foundChunks)) / $this->handler()->getTotalChunks() * 100); // We need to update the handler with correct percentage $this->handler()->setPercentageDone($percentage); - $this->isLastChunk = $percentage >= 100; return $this; }