From 87dc065d41d873e6619d2ab25d0933ca14d81fae Mon Sep 17 00:00:00 2001 From: Jan Gerber Date: Tue, 2 Aug 2011 12:44:26 +0000 Subject: [PATCH] result of finished Chunk Upload has to be Success --- includes/api/ApiUpload.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/api/ApiUpload.php b/includes/api/ApiUpload.php index 4769f92a91..cf94fd6321 100644 --- a/includes/api/ApiUpload.php +++ b/includes/api/ApiUpload.php @@ -136,7 +136,7 @@ class ApiUpload extends ApiBase { $result['filekey'] = $this->mParams['filekey']; if($this->mParams['offset'] + $chunkSize == $this->mParams['filesize']) { $this->mUpload->finalizeFile(); - $result['result'] = 'Done'; + $result['result'] = 'Success'; } } } -- 2.20.1