From 800dd8bdacf669c64f5af95e8ec093af0a5e50f0 Mon Sep 17 00:00:00 2001 From: Jake Barnby Date: Mon, 12 May 2025 19:26:35 +1200 Subject: [PATCH] Remove redundant filter, action checks which parameter sets are allowed --- src/Appwrite/Utopia/Request.php | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/Appwrite/Utopia/Request.php b/src/Appwrite/Utopia/Request.php index b80950bbb6..c50dea2713 100644 --- a/src/Appwrite/Utopia/Request.php +++ b/src/Appwrite/Utopia/Request.php @@ -70,11 +70,6 @@ class Request extends UtopiaRequest ? $matched->getNamespace() . '.' . $matched->getMethodName() : 'unknown.unknown'; - // Filter params to valid keys - if ($matched !== null && !empty($methodParamNames)) { - $parameters = \array_intersect_key($parameters, \array_flip($methodParamNames)); - } - // Apply filters foreach ($this->getFilters() as $filter) { $parameters = $filter->parse($parameters, $id);