NetworkSession: apparently aliases are already a list at this point???

This commit is contained in:
Dylan K. Taylor 2025-01-06 23:08:48 +00:00
parent d1fa6edc50
commit 2e32c50670
No known key found for this signature in database
GPG Key ID: 8927471A91CAFD3D

View File

@ -1110,7 +1110,7 @@ class NetworkSession{
//work around a client bug which makes the original name not show when aliases are used
$aliases[] = $lname;
}
$aliasObj = new CommandEnum(ucfirst($command->getLabel()) . "Aliases", array_values($aliases));
$aliasObj = new CommandEnum(ucfirst($command->getLabel()) . "Aliases", $aliases);
}
$description = $command->getDescription();