diff options
| -rw-r--r-- | Jellyfin.Networking/Manager/NetworkManager.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Jellyfin.Networking/Manager/NetworkManager.cs b/Jellyfin.Networking/Manager/NetworkManager.cs index 9cb49ce68..e4623cd62 100644 --- a/Jellyfin.Networking/Manager/NetworkManager.cs +++ b/Jellyfin.Networking/Manager/NetworkManager.cs @@ -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; |
