From b9e79d99c5121cc8b358c71faf810492874ad2d8 Mon Sep 17 00:00:00 2001 From: Michael Jumper Date: Fri, 25 Mar 2022 21:37:53 +0000 Subject: [PATCH] GUACAMOLE-1562: Update chained tunnel UUID when underlying tunnel receives UUID. --- guacamole-common-js/src/main/webapp/modules/Tunnel.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/guacamole-common-js/src/main/webapp/modules/Tunnel.js b/guacamole-common-js/src/main/webapp/modules/Tunnel.js index f300821e8..fa886f561 100644 --- a/guacamole-common-js/src/main/webapp/modules/Tunnel.js +++ b/guacamole-common-js/src/main/webapp/modules/Tunnel.js @@ -1236,12 +1236,17 @@ Guacamole.ChainedTunnel = function(tunnelChain) { tunnel.onstatechange = chained_tunnel.onstatechange; tunnel.oninstruction = chained_tunnel.oninstruction; tunnel.onerror = chained_tunnel.onerror; - tunnel.onuuid = chained_tunnel.onuuid; // Assign UUID if already known if (tunnel.uuid) chained_tunnel.setUUID(tunnel.uuid); + // Assign any future received UUIDs such that they are + // accessible from the main uuid property of the chained tunnel + tunnel.onuuid = function uuidReceived(uuid) { + chained_tunnel.setUUID(uuid); + }; + committedTunnel = tunnel; }