From 972ee8f6a904b6d0ade5ff89994ab0ee122d7f67 Mon Sep 17 00:00:00 2001 From: bakerboy448 <55419169+bakerboy448@users.noreply.github.com> Date: Mon, 13 Mar 2023 13:35:57 -0500 Subject: [PATCH] Fixed: (PirateTheNet) Switch to HTTPS from HTTP Fixes #1528 --- src/NzbDrone.Core/Indexers/Definitions/PirateTheNet.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/NzbDrone.Core/Indexers/Definitions/PirateTheNet.cs b/src/NzbDrone.Core/Indexers/Definitions/PirateTheNet.cs index a74823d5d..13dfeea9e 100644 --- a/src/NzbDrone.Core/Indexers/Definitions/PirateTheNet.cs +++ b/src/NzbDrone.Core/Indexers/Definitions/PirateTheNet.cs @@ -23,7 +23,8 @@ namespace NzbDrone.Core.Indexers.Definitions; public class PirateTheNet : TorrentIndexerBase { public override string Name => "PirateTheNet"; - public override string[] IndexerUrls => new[] { "http://piratethenet.org/" }; + public override string[] IndexerUrls => new[] { "https://piratethenet.org/" }; + public override string[] LegacyUrls => new[] { "http://piratethenet.org/" }; public override string Description => "PirateTheNet (PTN) is a ratioless movie tracker."; public override DownloadProtocol Protocol => DownloadProtocol.Torrent; public override IndexerPrivacy Privacy => IndexerPrivacy.Private;