Merge pull request #402 from julien-f/patch-1

Fix subprotocols
This commit is contained in:
Samuel 2014-10-01 16:46:35 +02:00
commit e2f1ff8048
1 changed files with 1 additions and 1 deletions

View File

@ -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");
},