From 073172d84b7859acf2f90772806163bf60343f24 Mon Sep 17 00:00:00 2001 From: Steven Nguyen Date: Thu, 31 Aug 2023 19:18:13 -0700 Subject: [PATCH] Remove route setIsActive() call The method has been removed since it's no longer necessary. --- app/controllers/shared/api.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/app/controllers/shared/api.php b/app/controllers/shared/api.php index 9dd800b69b..7a672cc104 100644 --- a/app/controllers/shared/api.php +++ b/app/controllers/shared/api.php @@ -254,8 +254,6 @@ App::init() ->setContentType($data['contentType']) ->send(base64_decode($data['payload'])) ; - - $route->setIsActive(false); } else { $response->addHeader('X-Appwrite-Cache', 'miss'); }