From af4de982770b7341f2f9d3dce84b050159eec2f7 Mon Sep 17 00:00:00 2001 From: Michael Jumper Date: Fri, 21 Mar 2014 11:19:07 -0700 Subject: [PATCH] GUAC-558: Do not trigger client onerror for tunnel onerror. --- guacamole-common-js/src/main/webapp/modules/Client.js | 5 ----- 1 file changed, 5 deletions(-) diff --git a/guacamole-common-js/src/main/webapp/modules/Client.js b/guacamole-common-js/src/main/webapp/modules/Client.js index 1ec474317..ac8f91d34 100644 --- a/guacamole-common-js/src/main/webapp/modules/Client.js +++ b/guacamole-common-js/src/main/webapp/modules/Client.js @@ -142,11 +142,6 @@ Guacamole.Client = function(tunnel) { // Array of allocated output streams by index var output_streams = []; - tunnel.onerror = function(status) { - if (guac_client.onerror) - guac_client.onerror(status); - }; - function setState(state) { if (state != currentState) { currentState = state;