From 4e0b6b3320ab1601e7ee9c04e74d03c37222b85c Mon Sep 17 00:00:00 2001 From: William Desportes Date: Sun, 3 Dec 2023 21:26:36 +0100 Subject: [PATCH] Fix uploadComplete should be isUploadComplete --- src/Resumable.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Resumable.php b/src/Resumable.php index 95871a2..5ca9d74 100644 --- a/src/Resumable.php +++ b/src/Resumable.php @@ -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) {