Add error for status code of 0.

This commit is contained in:
Michael Jumper
2012-03-25 17:56:33 -07:00
parent d4aabf013b
commit 3b7b8382a3

View File

@@ -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";