Fix syntax typo

wiki
Pyjacpp 2026-05-01 12:16:25 +02:00
parent bb48ba5e34
commit 42e9125152
No known key found for this signature in database
GPG Key ID: ED479A5A26930939
1 changed files with 1 additions and 1 deletions

View File

@ -87,7 +87,7 @@ class NoteKfetAuth extends AuthProvider {
$userInfos = $this->getUserInfos( $token ); $userInfos = $this->getUserInfos( $token );
return [ return [
'name' => this->sanitizeName( "$userInfos->normalized_name (note)" ), 'name' => $this->sanitizeName( "$userInfos->normalized_name (note)" ),
'realname' => $userInfos->username, 'realname' => $userInfos->username,
'email' => $userInfos->email, 'email' => $userInfos->email,
]; ];