From d9861b58b29f9bfb516a61791af579f0ad0d1022 Mon Sep 17 00:00:00 2001 From: Shiham Abdul Rahman Date: Fri, 30 Sep 2022 18:57:45 +0500 Subject: [PATCH] server to 0.0.0.0 --- buildfiles/app/src/settings.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/buildfiles/app/src/settings.js b/buildfiles/app/src/settings.js index ebd6101..0ffc518 100644 --- a/buildfiles/app/src/settings.js +++ b/buildfiles/app/src/settings.js @@ -7,7 +7,7 @@ class Settings { constructor(electron = false) { //Defaults this.port = 10069; - this.serverIp = '127.0.0.1'; + this.serverIp = '0.0.0.0'; this.arl; this.streamQuality = 3; this.volume = 0.69; @@ -124,4 +124,4 @@ class Settings { } -module.exports = {Settings}; \ No newline at end of file +module.exports = {Settings};