Merge pull request #472 from sparky8251/remove-wan-ddns

Remove WAN domain name options
This commit is contained in:
Joshua M. Boniface
2019-09-28 18:07:47 -04:00
committed by GitHub
27 changed files with 8 additions and 59 deletions
+2 -2
View File
@@ -36,7 +36,7 @@ define(["events", "apiclient", "appStorage"], function(events, apiClientFactory,
}
function updateServerInfo(server, systemInfo) {
server.Name = systemInfo.ServerName, systemInfo.Id && (server.Id = systemInfo.Id), systemInfo.LocalAddress && (server.LocalAddress = systemInfo.LocalAddress), systemInfo.WanAddress && (server.RemoteAddress = systemInfo.WanAddress)
server.Name = systemInfo.ServerName, systemInfo.Id && (server.Id = systemInfo.Id), systemInfo.LocalAddress && (server.LocalAddress = systemInfo.LocalAddress)
}
function getEmbyServerUrl(baseUrl, handler) {
@@ -744,4 +744,4 @@ define(["events", "apiclient", "appStorage"], function(events, apiClientFactory,
}
}
}, ConnectionManager
});
});