From: Michael Jumper Date: Mon, 26 Mar 2012 00:56:33 +0000 (-0700) Subject: Add error for status code of 0. X-Git-Url: http://git.alex.org.uk Add error for status code of 0. --- diff --git a/src/main/resources/tunnel.js b/src/main/resources/tunnel.js index a06c2b4..39709d8 100644 --- a/src/main/resources/tunnel.js +++ b/src/main/resources/tunnel.js @@ -208,6 +208,7 @@ Guacamole.HTTPTunnel = function(tunnelURL) { var status = xmlhttprequest.status; // Special cases + if (status == 0) return "Disconnected"; if (status == 200) return "Success"; if (status == 403) return "Unauthorized"; if (status == 404) return "Connection does not exist";