Update Jellyfin.Networking/Manager/NetworkManager.cs

Co-authored-by: Bond-009 <bond.009@outlook.com>
This commit is contained in:
BaronGreenback 2021-02-23 20:34:42 +00:00 committed by GitHub
parent f67137004c
commit b5c6e5fb97
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -713,11 +713,7 @@ namespace Jellyfin.Networking.Manager
if ((!partial && string.Equals(interfc, token, StringComparison.OrdinalIgnoreCase))
|| (partial && interfc.StartsWith(token, true, CultureInfo.InvariantCulture)))
{
if (index == null)
{
index = new List<int>();
}
index ??= new List<int>();
index.Add(interfcIndex);
}
}