From eb5a8a9e4547d9ee70fb5b5862535cc5814ebd65 Mon Sep 17 00:00:00 2001 From: Khushboo Verma Date: Mon, 18 Aug 2025 12:42:31 +0530 Subject: [PATCH] Attempt to fix large deployment download --- .../Platform/Modules/Functions/Http/Deployments/Download/Get.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Appwrite/Platform/Modules/Functions/Http/Deployments/Download/Get.php b/src/Appwrite/Platform/Modules/Functions/Http/Deployments/Download/Get.php index fd22248fa3..c9f298dadc 100644 --- a/src/Appwrite/Platform/Modules/Functions/Http/Deployments/Download/Get.php +++ b/src/Appwrite/Platform/Modules/Functions/Http/Deployments/Download/Get.php @@ -134,6 +134,7 @@ class Get extends Action ->setStatusCode(Response::STATUS_CODE_PARTIALCONTENT); $response->send($device->read($path, $start, ($end - $start + 1))); + return; } if ($size > APP_STORAGE_READ_BUFFER) {