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); } } }