Skip to content

Commit

Permalink
Fix uploadComplete should be isUploadComplete
Browse files Browse the repository at this point in the history
  • Loading branch information
williamdes committed Dec 3, 2023
1 parent c51b1c4 commit 4e0b6b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Resumable.php
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,7 @@ private function createFileAndDeleteTmp(string $identifier, ?string $filename):

if ($this->createFileFromChunks($chunkFiles, $this->filepath)) {
$this->log('Upload done for: ' . $identifier);
$this->uploadComplete = true;
$this->isUploadComplete = true;
}

if ($this->deleteTmpFolder === false) {
Expand Down

0 comments on commit 4e0b6b3

Please sign in to comment.