1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-16 21:15:33 -04:00

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

(cherry picked from commit 4e19fec123900b8ba1252b640f26f2a4983683ff)
This commit is contained in:
Mark McDowall
2023-12-31 13:16:41 -08:00
committed by Qstick
parent 554c696ee6
commit 03dec07cbe

View File

@@ -330,8 +330,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);
}