aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Networking/Manager/NetworkManager.cs
diff options
context:
space:
mode:
authorClaus Vium <cvium@users.noreply.github.com>2021-09-07 19:52:17 +0200
committerGitHub <noreply@github.com>2021-09-07 19:52:17 +0200
commit4f51a220819bdd1aab11637daf3e6295bed7bae5 (patch)
treed3c0f695d98ec020a18111090002beeba1c15a77 /Jellyfin.Networking/Manager/NetworkManager.cs
parent153e9202397f236a4a415bd033c3b398b6e6573c (diff)
Update Jellyfin.Networking/Manager/NetworkManager.cs
Co-authored-by: Cody Robibero <cody@robibe.ro>
Diffstat (limited to 'Jellyfin.Networking/Manager/NetworkManager.cs')
-rw-r--r--Jellyfin.Networking/Manager/NetworkManager.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Jellyfin.Networking/Manager/NetworkManager.cs b/Jellyfin.Networking/Manager/NetworkManager.cs
index b654535e6..cf002dc73 100644
--- a/Jellyfin.Networking/Manager/NetworkManager.cs
+++ b/Jellyfin.Networking/Manager/NetworkManager.cs
@@ -458,7 +458,7 @@ namespace Jellyfin.Networking.Manager
return CreateCollection(_internalInterfaces);
}
- return new Collection<IPObject>(_bindAddresses.Where(IsInLocalNetwork).ToArray());
+ return new Collection<IPObject>(_bindAddresses.Where(a => IsInLocalNetwork(a)).ToArray());
}
/// <inheritdoc/>