Fixed: Certificate validation for local IP addresses instead of hostnames
This commit is contained in:
parent
35f28bdc71
commit
c718db21da
|
@ -58,7 +58,8 @@ namespace NzbDrone.Core.Security
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (certificateValidation == CertificateValidationType.DisabledForLocalAddresses && host.AddressList.All(i => i.IsLocalAddress()))
|
if (certificateValidation == CertificateValidationType.DisabledForLocalAddresses &&
|
||||||
|
host.AddressList.All(i => i.IsIPv6LinkLocal || i.IsLocalAddress()))
|
||||||
{
|
{
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue