Fixed: Disable SSL on start if certificate path is not set

pull/6286/head
Mark McDowall 6 months ago committed by Mark McDowall
parent 5ce98fd83d
commit 4e19fec123

@ -346,8 +346,8 @@ namespace NzbDrone.Core.Configuration
return;
}
// If SSL is enabled and a cert hash is still in the config file disable SSL
if (EnableSsl && GetValue("SslCertHash", null).IsNotNullOrWhiteSpace())
// If SSL is enabled and a cert hash is still in the config file or cert path is empty disable SSL
if (EnableSsl && (GetValue("SslCertHash", null).IsNotNullOrWhiteSpace() || SslCertPath.IsNullOrWhiteSpace()))
{
SetValue("EnableSsl", false);
}

Loading…
Cancel
Save