diff options
| author | Anthony Lavado <anthony@lavado.ca> | 2020-06-20 17:39:00 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-06-20 17:39:00 -0400 |
| commit | 3a5df3d06000a209e308f21cebf9aeb4c3fa9a5b (patch) | |
| tree | be1fbaf44475fc5aa21df24ac8e5f3cf05abc7c9 /Emby.Server.Implementations/ApplicationHost.cs | |
| parent | bb947718eaee3a8381d9b9e6ed926676de39d7c9 (diff) | |
| parent | 43221fc26b46ac8d55b8bac7cec859dc8ec3883b (diff) | |
Merge pull request #3007 from BaronGreenback/SSDP
Fix for #2986
Diffstat (limited to 'Emby.Server.Implementations/ApplicationHost.cs')
| -rw-r--r-- | Emby.Server.Implementations/ApplicationHost.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/ApplicationHost.cs b/Emby.Server.Implementations/ApplicationHost.cs index 23f0571a1..14267b561 100644 --- a/Emby.Server.Implementations/ApplicationHost.cs +++ b/Emby.Server.Implementations/ApplicationHost.cs @@ -1234,7 +1234,7 @@ namespace Emby.Server.Implementations if (addresses.Count == 0) { - addresses.AddRange(_networkManager.GetLocalIpAddresses(ServerConfigurationManager.Configuration.IgnoreVirtualInterfaces)); + addresses.AddRange(_networkManager.GetLocalIpAddresses()); } var resultList = new List<IPAddress>(); |
