aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/ApplicationHost.cs
diff options
context:
space:
mode:
authorAndrew Rabert <ar@nullsum.net>2018-12-10 19:27:54 -0500
committerAndrew Rabert <ar@nullsum.net>2018-12-10 19:29:51 -0500
commit7c2248727aec0d407ca5ad811b8c86b4efc1c19c (patch)
tree1996e458a81066622a17dbc467b61a7fdc8ce9a0 /Emby.Server.Implementations/ApplicationHost.cs
parent03b637b22bc47095b534a606f58f0d3227bd3f2c (diff)
Remove Emby.Server.Connect
Diffstat (limited to 'Emby.Server.Implementations/ApplicationHost.cs')
-rw-r--r--Emby.Server.Implementations/ApplicationHost.cs6
1 files changed, 4 insertions, 2 deletions
diff --git a/Emby.Server.Implementations/ApplicationHost.cs b/Emby.Server.Implementations/ApplicationHost.cs
index 3208c6a1f..de1a1dfcd 100644
--- a/Emby.Server.Implementations/ApplicationHost.cs
+++ b/Emby.Server.Implementations/ApplicationHost.cs
@@ -1994,7 +1994,8 @@ namespace Emby.Server.Implementations
CanSelfRestart = CanSelfRestart,
CanSelfUpdate = CanSelfUpdate,
CanLaunchWebBrowser = CanLaunchWebBrowser,
- WanAddress = ConnectManager.WanApiAddress,
+ // TODO - remove WanAddress
+ WanAddress = "0.0.0.0",
HasUpdateAvailable = HasUpdateAvailable,
SupportsAutoRunAtStartup = SupportsAutoRunAtStartup,
TranscodingTempPath = ApplicationPaths.TranscodingTempPath,
@@ -2027,7 +2028,8 @@ namespace Emby.Server.Implementations
Version = ApplicationVersion.ToString(),
Id = SystemId,
OperatingSystem = EnvironmentInfo.OperatingSystem.ToString(),
- WanAddress = ConnectManager.WanApiAddress,
+ // TODO - remove WanAddress
+ WanAddress = "0.0.0.0",
ServerName = FriendlyName,
LocalAddress = localAddress
};