From eb9bfe943d3df620054461c8a69eb82ccefdf15d Mon Sep 17 00:00:00 2001 From: Garfield69 Date: Wed, 23 Oct 2019 10:40:03 +1300 Subject: [PATCH] drop IgnoreSslErrors=true error msg. resolves #6229 --- src/Jackett.Server/Initialisation.cs | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/Jackett.Server/Initialisation.cs b/src/Jackett.Server/Initialisation.cs index 6dd570126..ae6ea185e 100644 --- a/src/Jackett.Server/Initialisation.cs +++ b/src/Jackett.Server/Initialisation.cs @@ -27,10 +27,11 @@ namespace Jackett.Server logger.Info("Tracing enabled."); } - if (runtimeSettings.IgnoreSslErrors == true) - { - logger.Error($"The IgnoreSslErrors option has been deprecated, please remove it from your start arguments"); - } + // https://github.com/Jackett/Jackett/issues/6229 + //if (runtimeSettings.IgnoreSslErrors == true) + //{ + // logger.Error($"The IgnoreSslErrors option has been deprecated, please remove it from your start arguments"); + //} if (!string.IsNullOrWhiteSpace(runtimeSettings.CustomDataFolder)) {