mirror of
https://github.com/Sonarr/Sonarr
synced 2025-01-02 13:14:58 +00:00
Revert "Change default tls provider so users won't have to set TLS_PROVIDER explicitly."
This reverts commit 8e63f7d436
.
Only certain platforms need it and causes issues with OSX and cases where the user relies on btls.
This commit is contained in:
parent
ce6a5713d1
commit
89e804814b
1 changed files with 0 additions and 6 deletions
|
@ -2,7 +2,6 @@
|
||||||
using System.Net;
|
using System.Net;
|
||||||
using NLog;
|
using NLog;
|
||||||
using NzbDrone.Common.EnvironmentInfo;
|
using NzbDrone.Common.EnvironmentInfo;
|
||||||
using NzbDrone.Common.Extensions;
|
|
||||||
using NzbDrone.Common.Instrumentation;
|
using NzbDrone.Common.Instrumentation;
|
||||||
|
|
||||||
namespace NzbDrone.Common.Security
|
namespace NzbDrone.Common.Security
|
||||||
|
@ -19,11 +18,6 @@ namespace NzbDrone.Common.Security
|
||||||
if (OsInfo.IsNotWindows)
|
if (OsInfo.IsNotWindows)
|
||||||
{
|
{
|
||||||
// This was never meant to be used on mono, and will cause issues with mono 5 and higher if btls is enabled.
|
// This was never meant to be used on mono, and will cause issues with mono 5 and higher if btls is enabled.
|
||||||
// Instead, force TLS provider to legacy for now due to conflict between btls and mediainfo, unless the user explicitly specified it.
|
|
||||||
if (Environment.GetEnvironmentVariable("MONO_TLS_PROVIDER").IsNullOrWhiteSpace())
|
|
||||||
{
|
|
||||||
Environment.SetEnvironmentVariable("MONO_TLS_PROVIDER", "legacy");
|
|
||||||
}
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue