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:32 +00:00 committed by GitHub
parent ff7cae8a13
commit f67137004c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -694,7 +694,7 @@ namespace Jellyfin.Networking.Manager
/// <param name="token">String to check.</param>
/// <param name="index">Interface index numbers that match.</param>
/// <returns><c>true</c> if an interface name matches the token, <c>False</c> otherwise.</returns>
private bool TryIsInterface(string token, [NotNullWhen(true)] out List<int>? index)
private bool TryIsInterface(string token, [MaybeNullWhen(false)] out List<int> index)
{
index = null;