@@ -98,7 +98,10 @@ class UserSolver extends AbstractService implements SolverInterface | |||
public function getUsername(User $user, $withType = false): string | |||
{ | |||
if (isset($user->name_legal_person) && strlen($user->name_legal_person)) { | |||
if ($this->isTypeLegalPerson($user) | |||
&& isset($user->name_legal_person) | |||
&& strlen($user->name_legal_person)) { | |||
$username = $user->name_legal_person; | |||
} else { | |||
$username = $user->lastname . ' ' . $user->name; |