From f01922daf916ee24a54b7ff83ad5d7dedf1fabee Mon Sep 17 00:00:00 2001 From: Jake Barnby Date: Wed, 8 May 2024 21:06:30 +1200 Subject: [PATCH] Fix syntax error --- app/controllers/api/account.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/controllers/api/account.php b/app/controllers/api/account.php index 2466073db9..9c7f9083d5 100644 --- a/app/controllers/api/account.php +++ b/app/controllers/api/account.php @@ -1543,7 +1543,7 @@ App::get('/v1/account/sessions/oauth2/:provider/redirect') $target ->setAttribute('sessionId', $session->getId()) - ->setAttrubte('sessionInternalId', $session->getInternalId()); + ->setAttribute('sessionInternalId', $session->getInternalId()); $dbForProject->updateDocument('targets', $target->getId(), $target); }