Fix debug builds (#8909)

This commit is contained in:
Bond-009
2022-12-14 22:03:03 +01:00
committed by GitHub
parent 39289ae814
commit 3462676a8f
9 changed files with 11 additions and 10 deletions

View File

@@ -1301,7 +1301,8 @@ namespace Jellyfin.Networking.Manager
var extResult = _interfaceAddresses
.Exclude(_bindExclusions, false)
.Where(p => !IsInLocalNetwork(p))
.OrderBy(p => p.Tag);
.OrderBy(p => p.Tag)
.ToList();
if (extResult.Any())
{