Merge pull request #8093 from appwrite/fix-syntax-error

Fix syntax error
This commit is contained in:
Jake Barnby 2024-05-08 21:19:53 +12:00 committed by GitHub
commit bb887bc08e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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);
}