From 58ca1978eacdb030233b5f7351cc1b063da289ee Mon Sep 17 00:00:00 2001 From: Julien Fontanet Date: Wed, 1 Oct 2014 16:30:39 +0200 Subject: [PATCH] Fix subprotocols Broken by b1dee9478815b22bf5fee3ee9e44321d4bb46c91 --- include/rfb.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/rfb.js b/include/rfb.js index ffa66020..0afe656d 100644 --- a/include/rfb.js +++ b/include/rfb.js @@ -316,7 +316,7 @@ var RFB; uri += '://' + this._rfb_host + ':' + this._rfb_port + '/' + this._rfb_path; Util.Info("connecting to " + uri); - this._sock.open(uri, this._sockProtocols); + this._sock.open(uri, this._wsProtocols); Util.Debug("<< RFB.connect"); },