GUACAMOLE-172: Merge keep-alive ping fix.

This commit is contained in:
James Muehlner
2017-01-24 11:39:16 -08:00

View File

@@ -1346,7 +1346,7 @@ Guacamole.Client = function(tunnel) {
// Ping every 5 seconds (ensure connection alive) // Ping every 5 seconds (ensure connection alive)
pingInterval = window.setInterval(function() { pingInterval = window.setInterval(function() {
tunnel.sendMessage("sync", currentTimestamp); tunnel.sendMessage("nop");
}, 5000); }, 5000);
setState(STATE_WAITING); setState(STATE_WAITING);