mirror of
https://github.com/gyurix1968/guacamole-client.git
synced 2025-09-06 05:07:41 +00:00
GUACAMOLE-1293: Change handshake instruction and client to username.
This commit is contained in:
@@ -342,9 +342,9 @@ public class TunnelRequestService {
|
||||
UserContext userContext = session.getUserContext(authProviderIdentifier);
|
||||
|
||||
// Attempt to get the username and set it for the tunnel client.
|
||||
String name = authenticatedUser.getCredentials().getUsername();
|
||||
if (name != null)
|
||||
info.setName(name);
|
||||
String username = authenticatedUser.getCredentials().getUsername();
|
||||
if (username != null)
|
||||
info.setUsername(username);
|
||||
|
||||
try {
|
||||
|
||||
|
Reference in New Issue
Block a user