From 2a3ec656686f5afc99b086dafff6817cddd0cec1 Mon Sep 17 00:00:00 2001 From: kaso17 Date: Tue, 25 May 2021 18:18:37 +0200 Subject: [PATCH] TorrenTech: fix certificate fix #11160 --- src/Jackett.Common/Indexers/TorrenTech.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Jackett.Common/Indexers/TorrenTech.cs b/src/Jackett.Common/Indexers/TorrenTech.cs index 25f579bd3..ba943361f 100644 --- a/src/Jackett.Common/Indexers/TorrenTech.cs +++ b/src/Jackett.Common/Indexers/TorrenTech.cs @@ -55,6 +55,8 @@ namespace Jackett.Common.Indexers Language = "en-us"; Type = "private"; + wc.AddTrustedCertificate(new Uri(SiteLink).Host, "22E3C9896A1207EFF97599FE12B9DBB2AF8EC0CA"); + AddCategoryMapping(1, TorznabCatType.AudioMP3); AddCategoryMapping(2, TorznabCatType.AudioLossless); AddCategoryMapping(3, TorznabCatType.AudioOther);