From aace77bdeac4d8bab30781d4805248677c7cfa6b Mon Sep 17 00:00:00 2001 From: Sarah Boctor Date: Wed, 18 Oct 2017 14:43:36 +0200 Subject: [PATCH] Fix this reference. --- include/rfb.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/rfb.js b/include/rfb.js index 6e30341a..bcf664d6 100644 --- a/include/rfb.js +++ b/include/rfb.js @@ -316,8 +316,8 @@ var RFB; } uri += '://' + this._rfb_host + ':' + this._rfb_port + '/' + this._rfb_path; - if (self._rfb_queryargs != null) { - var querystr = WebUtil.objToQueryString(self._rfb_queryargs); + if (this._rfb_queryargs != null) { + var querystr = WebUtil.objToQueryString(this._rfb_queryargs); uri += "?" + querystr; } Util.Info("connecting to " + uri);