1
0
Fork 0
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:
flightlevel 2016-05-18 20:33:37 +10:00
parent ece16d1075
commit 2644fd813e

View file

@ -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))
{