mirror of
https://github.com/appwrite/appwrite
synced 2026-05-05 22:38:37 +00:00
fix name
This commit is contained in:
parent
293406eff6
commit
7e604cbcfb
1 changed files with 1 additions and 1 deletions
|
|
@ -134,7 +134,7 @@ class Zoom extends OAuth2
|
|||
public function getUserName(string $accessToken):string
|
||||
{
|
||||
$response = $this->getUser($accessToken);
|
||||
return $response['first_name'] ?? '' . ' ' . $response['last_name'] ?? '';
|
||||
return ($response['first_name'] ?? '') . ' ' . ($response['last_name'] ?? '');
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Reference in a new issue