Fixed: (PirateTheNet) Switch to HTTPS from HTTP

Fixes #1528
pull/1533/head
bakerboy448 1 year ago committed by Bogdan
parent 7dfff0690a
commit 972ee8f6a9

@ -23,7 +23,8 @@ namespace NzbDrone.Core.Indexers.Definitions;
public class PirateTheNet : TorrentIndexerBase<UserPassTorrentBaseSettings>
{
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;

Loading…
Cancel
Save