From a658540d393375c172c60c99565af1b797cf0449 Mon Sep 17 00:00:00 2001 From: Garfield69 Date: Thu, 10 Sep 2020 07:09:26 +1200 Subject: [PATCH] psytorrents: ignore expired certificate. resolves #9479 --- src/Jackett.Common/Indexers/PsyTorrents.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Jackett.Common/Indexers/PsyTorrents.cs b/src/Jackett.Common/Indexers/PsyTorrents.cs index 36df4b691..3f0b00950 100644 --- a/src/Jackett.Common/Indexers/PsyTorrents.cs +++ b/src/Jackett.Common/Indexers/PsyTorrents.cs @@ -27,6 +27,7 @@ namespace Jackett.Common.Indexers Type = "private"; webclient.AddTrustedCertificate(new Uri(SiteLink).Host, "B52C043ABDE7AFB2231E162B1DD468758AEEE307"); + webclient.AddTrustedCertificate(new Uri(SiteLink).Host, "AAA3E062739F3733FE659BA4A89E55E4EB48063B"); AddCategoryMapping(1, TorznabCatType.Audio, "Music"); AddCategoryMapping(2, TorznabCatType.Movies, "Movies");