From 9d454aeec59048b6e5c11e7a3cfbde71ce73c304 Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Sun, 7 May 2017 15:48:56 -0700 Subject: [PATCH] Fix broken error message when failing to pair --- static/js/utils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/js/utils.js b/static/js/utils.js index 93fc9f2..b20e927 100644 --- a/static/js/utils.js +++ b/static/js/utils.js @@ -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.gputype = ''; this.numofapps = 0; - this.hostname = ''; + this.hostname = address; this.externalIP = ''; _self = this; };