mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-12-27 09:56:33 +00:00
Remove redundant type specification
This commit is contained in:
parent
47254d6a22
commit
963d8e66a2
|
@ -204,7 +204,7 @@ public static partial class NetworkExtensions
|
|||
{
|
||||
var ipBlock = splitString.Current;
|
||||
var address = IPAddress.None;
|
||||
if (negated && ipBlock.StartsWith<char>("!") && IPAddress.TryParse(ipBlock[1..], out var tmpAddress))
|
||||
if (negated && ipBlock.StartsWith("!") && IPAddress.TryParse(ipBlock[1..], out var tmpAddress))
|
||||
{
|
||||
address = tmpAddress;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue