From 063557f0845746f9b8f647e6aba790eb709db596 Mon Sep 17 00:00:00 2001 From: Michael Jumper Date: Fri, 25 Mar 2022 21:37:17 +0000 Subject: [PATCH] GUACAMOLE-1562: Ensure "ping" response is not erroneously handled as the tunnel UUID. --- guacamole-common-js/src/main/webapp/modules/Tunnel.js | 2 +- 1 file changed, 1 insertion(+), 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 23657cddc..f300821e8 100644 --- a/guacamole-common-js/src/main/webapp/modules/Tunnel.js +++ b/guacamole-common-js/src/main/webapp/modules/Tunnel.js @@ -1094,7 +1094,7 @@ Guacamole.WebSocketTunnel = function(tunnelURL) { if (tunnel.uuid === null) { // Associate tunnel UUID if received - if (opcode === Guacamole.Tunnel.INTERNAL_DATA_OPCODE) + if (opcode === Guacamole.Tunnel.INTERNAL_DATA_OPCODE && elements.length === 1) tunnel.setUUID(elements[0]); // Tunnel is now open and UUID is available