From c4dda0751e4e8322208e07dded397275c3c5f1e1 Mon Sep 17 00:00:00 2001 From: Hemachandar Date: Wed, 25 Feb 2026 13:58:14 +0530 Subject: [PATCH] lint --- app/controllers/general.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/controllers/general.php b/app/controllers/general.php index fb8393e8fd..a9b320b1c0 100644 --- a/app/controllers/general.php +++ b/app/controllers/general.php @@ -373,7 +373,8 @@ function router(Http $utopia, Database $dbForPlatform, callable $getProjectDB, S $payload = []; try { $payload = $jwt->decode($userJwt); - } catch (JWTException $error) {} + } catch (JWTException $error) { + } $userId = $payload['userId'] ?? ''; $isExecutionAllowed = \in_array("user:{$userId}", $permissions);