Fix broken error message when failing to pair

This commit is contained in:
Cameron Gutman 2017-05-07 15:48:56 -07:00
parent 372dd1bec7
commit 9d454aeec5

View File

@ -50,7 +50,7 @@ function NvHTTP(address, clientUid, userEnteredAddress = '') {
this.supportedDisplayModes = {}; // key: y-resolution:x-resolution, value: array of supported framerates (only ever seen 30 or 60, here) this.supportedDisplayModes = {}; // key: y-resolution:x-resolution, value: array of supported framerates (only ever seen 30 or 60, here)
this.gputype = ''; this.gputype = '';
this.numofapps = 0; this.numofapps = 0;
this.hostname = ''; this.hostname = address;
this.externalIP = ''; this.externalIP = '';
_self = this; _self = this;
}; };