From 614278e9cf7f34a105d4b33365486f7912e23a02 Mon Sep 17 00:00:00 2001 From: ilike2burnthing <59480337+ilike2burnthing@users.noreply.github.com> Date: Sun, 24 Aug 2025 14:35:53 +0100 Subject: [PATCH] iptorrents: remove cert exceptions --- src/Jackett.Common/Indexers/Definitions/IPTorrents.cs | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/Jackett.Common/Indexers/Definitions/IPTorrents.cs b/src/Jackett.Common/Indexers/Definitions/IPTorrents.cs index d6631fb18..61c3660e6 100644 --- a/src/Jackett.Common/Indexers/Definitions/IPTorrents.cs +++ b/src/Jackett.Common/Indexers/Definitions/IPTorrents.cs @@ -189,14 +189,6 @@ namespace Jackett.Common.Indexers.Definitions return caps; } - public override void LoadValuesFromJson(JToken jsonConfig, bool useProtectionService = false) - { - base.LoadValuesFromJson(jsonConfig, useProtectionService); - - webclient?.AddTrustedCertificate(new Uri(SiteLink).Host, "9C516CD4F5E8A4A1883F4AB478195AB7AE7773B2"); // for *.octopus.town expired 17/Aug/25 - webclient?.AddTrustedCertificate(new Uri(SiteLink).Host, "FF73E9AB52344B649B38E6872664B0FFE7499D3F"); // for primary domain using untrusted comodo_AAA service - } - public override async Task ApplyConfiguration(JToken configJson) { LoadValuesFromJson(configJson);