From dae6aeb4b5bb2eb4ef91f96b370824acd4bfcc9c Mon Sep 17 00:00:00 2001 From: kaso17 Date: Mon, 23 Apr 2018 17:13:57 +0200 Subject: [PATCH] TorrentDay: disable .it domain --- src/Jackett.Common/Indexers/TorrentDay.cs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/Jackett.Common/Indexers/TorrentDay.cs b/src/Jackett.Common/Indexers/TorrentDay.cs index 5e9f6f2b1..7c6c3c03e 100644 --- a/src/Jackett.Common/Indexers/TorrentDay.cs +++ b/src/Jackett.Common/Indexers/TorrentDay.cs @@ -22,6 +22,10 @@ namespace Jackett.Common.Indexers private string LoginUrl { get { return SiteLink + "tak3login.php"; } } private string SearchUrl { get { return SiteLink + "t.json"; } } + public override string[] LegacySiteLinks { get; protected set; } = new string[] { + "https://torrentday.it/", // temp down? + }; + public override string[] AlternativeSiteLinks { get; protected set; } = new string[] { "https://tdonline.org/", "https://secure.torrentday.com/", @@ -45,7 +49,7 @@ namespace Jackett.Common.Indexers public TorrentDay(IIndexerConfigurationService configService, WebClient wc, Logger l, IProtectionService ps) : base(name: "TorrentDay", description: "TorrentDay (TD) is a Private site for TV / MOVIES / GENERAL", - link: "https://torrentday.it/", + link: "https://torrentday.com/", caps: TorznabUtil.CreateDefaultTorznabTVCaps(), configService: configService, client: wc,