GUAC-558: Add separate error strings for tunnel errors.

This commit is contained in:
Michael Jumper
2014-03-21 19:46:01 -07:00
parent 11b8e3673a
commit 6d4a83ce33
2 changed files with 50 additions and 4 deletions

View File

@@ -137,7 +137,7 @@
// Show connection errors from tunnel
tunnel.onerror = function(status) {
var message = GuacUI.Client.errors[status.code] || GuacUI.Client.errors.DEFAULT;
var message = GuacUI.Client.tunnel_errors[status.code] || GuacUI.Client.tunnel_errors.DEFAULT;
GuacUI.Client.showError("Connection Error", message);
};