You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@guacamole.apache.org by GitBox <gi...@apache.org> on 2023/01/05 03:04:16 UTC

[GitHub] [guacamole-client] necouchman commented on a diff in pull request #668: GUACAMOLE-1293: Add client-side support for receiving join and leave notifications.

necouchman commented on code in PR #668:
URL: https://github.com/apache/guacamole-client/pull/668#discussion_r1062073388


##########
guacamole/src/main/java/org/apache/guacamole/tunnel/TunnelRequestService.java:
##########
@@ -340,6 +340,11 @@ public GuacamoleTunnel createTunnel(TunnelRequest request)
         GuacamoleSession session = authenticationService.getGuacamoleSession(authToken);
         AuthenticatedUser authenticatedUser = session.getAuthenticatedUser();
         UserContext userContext = session.getUserContext(authProviderIdentifier);
+        
+        // Attempt to get the user's name and set it for the tunnel client.
+        String name = authenticatedUser.getCredentials().getName();

Review Comment:
   Fixed via rebase.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscribe@guacamole.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org