From 46c60391446e252ee4b6f1db367a5f8e9907e9ac Mon Sep 17 00:00:00 2001 From: Garfield69 Date: Tue, 7 May 2019 15:28:14 +1200 Subject: [PATCH] psytorrents: drop expired certificate --- src/Jackett.Common/Indexers/Psytorrents.cs | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/Jackett.Common/Indexers/Psytorrents.cs b/src/Jackett.Common/Indexers/Psytorrents.cs index 0afe019d0..701337a46 100644 --- a/src/Jackett.Common/Indexers/Psytorrents.cs +++ b/src/Jackett.Common/Indexers/Psytorrents.cs @@ -9,10 +9,6 @@ namespace Jackett.Common.Indexers { public class Psytorrents : GazelleTracker { - private static readonly string[] certificateHashs = new string[] { - "8375026D07C1EAE2DCE7157ABF255357366AE341", // expired - }; - public Psytorrents(IIndexerConfigurationService configService, WebClient webClient, Logger logger, IProtectionService protectionService) : base(name: "Psytorrents", desc: "Psytorrents (PSY) is a Private Torrent Tracker for ELECTRONIC MUSIC", @@ -31,9 +27,6 @@ namespace Jackett.Common.Indexers AddCategoryMapping(1, TorznabCatType.Audio, "Music"); AddCategoryMapping(2, TorznabCatType.Movies, "Movies"); AddCategoryMapping(3, TorznabCatType.PC0day, "App"); - - foreach (var certificateHash in certificateHashs) - webclient.AddTrustedCertificate(new Uri(SiteLink).Host, certificateHash); } } }