aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/ApplicationHost.cs
diff options
context:
space:
mode:
authorVasily <JustAMan@users.noreply.github.com>2019-02-27 19:23:31 +0300
committerGitHub <noreply@github.com>2019-02-27 19:23:31 +0300
commit3769453541d8e3da45a9bf40ef0e9da6268bebdc (patch)
tree36b4c42a65b666536f34cd9f8da6b6e54b8a8fc8 /Emby.Server.Implementations/ApplicationHost.cs
parent8c2af50170ea2a7964a6ad40bbe60026cfa625b0 (diff)
parent7429c07c05ad12fbacef7952574edd75c294eb8a (diff)
Merge pull request #978 from fasheng/fix-dlna-multiple-interfaces
Fix DLNA for multiple interfaces on linux
Diffstat (limited to 'Emby.Server.Implementations/ApplicationHost.cs')
-rw-r--r--Emby.Server.Implementations/ApplicationHost.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/ApplicationHost.cs b/Emby.Server.Implementations/ApplicationHost.cs
index 45a819f26..b5a64cbdd 100644
--- a/Emby.Server.Implementations/ApplicationHost.cs
+++ b/Emby.Server.Implementations/ApplicationHost.cs
@@ -1579,7 +1579,7 @@ namespace Emby.Server.Implementations
if (addresses.Count == 0)
{
- addresses.AddRange(NetworkManager.GetLocalIpAddresses());
+ addresses.AddRange(NetworkManager.GetLocalIpAddresses(ServerConfigurationManager.Configuration.IgnoreVirtualInterfaces));
}
var resultList = new List<IpAddressInfo>();