mirror of
https://github.com/Jackett/Jackett.git
synced 2025-09-17 17:34:09 +02:00
Fix: Redhat/NSS based libcurl not being able to access certain indexers
This commit is contained in:
@@ -35,11 +35,11 @@ namespace JackettConsole
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
|
||||
|
||||
/* ====== Options ===== */
|
||||
|
||||
// SSL Fix
|
||||
Startup.DoSSLFix = options.SSLFix;
|
||||
|
||||
// Use curl
|
||||
if (options.Client!=null)
|
||||
Startup.ClientOverride = options.Client.ToLowerInvariant();
|
||||
@@ -60,6 +60,10 @@ namespace JackettConsole
|
||||
if (options.Tracing)
|
||||
Engine.Logger.Info("Tracing enabled.");
|
||||
|
||||
if (options.SSLFix == true)
|
||||
Engine.Logger.Info("SSL ECC workaround enabled.");
|
||||
else if (options.SSLFix == false)
|
||||
Engine.Logger.Info("SSL ECC workaround has been disabled.");
|
||||
/* ====== Actions ===== */
|
||||
|
||||
// Install service
|
||||
|
Reference in New Issue
Block a user