mirror of
https://github.com/Jackett/Jackett
synced 2025-02-25 07:32:38 +00:00
Bluetigers fix SSL issue (#346)
This commit is contained in:
parent
ece16d1075
commit
2644fd813e
1 changed files with 2 additions and 0 deletions
|
@ -46,6 +46,8 @@ namespace Jackett.Utils.Clients
|
|||
|
||||
private async Task<WebClientByteResult> Run(WebRequest webRequest)
|
||||
{
|
||||
ServicePointManager.SecurityProtocol = (SecurityProtocolType)192 | (SecurityProtocolType)768 | (SecurityProtocolType)3072;
|
||||
|
||||
var cookies = new CookieContainer();
|
||||
if (!string.IsNullOrEmpty(webRequest.Cookies))
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue