diff --git a/libraries/webInterface/gui/index.js b/libraries/webInterface/gui/index.js index f01b39253..fce370e82 100644 --- a/libraries/webInterface/gui/index.js +++ b/libraries/webInterface/gui/index.js @@ -941,7 +941,7 @@ realityServer.updateManageFrames = function () { }; realityServer.selectHardwareInterfaceSettings = function (interfaceName) { - let ipAddress = realityServer.states.ipAdress.interfaces[realityServer.states.ipAdress.activeInterface]; + let ipAddress = 'localhost'; // realityServer.states.ipAdress.interfaces[realityServer.states.ipAdress.activeInterface]; let pathToConfig = 'http://' + ipAddress + ':' + realityServer.states.serverPort + '/hardwareInterface/' + interfaceName + '/config.html'; let configFrame = document.querySelector('.configFrame'); configFrame.src = pathToConfig;