From e19d59c4abfc567d45698c9fc13076e9a196ef6f Mon Sep 17 00:00:00 2001 From: Robin Edbom Date: Tue, 24 Apr 2018 02:21:59 +0200 Subject: [PATCH] Fix for #3010 (#3014) * Fix for #3010 This will fix the problem with torrentday.it being down and https:///torrentday.com will redirect you to https://www.torrentday.com. And since we don't allow redirects, this will not work without the www. * Added the feedback from #3014 --- src/Jackett.Common/Indexers/TorrentDay.cs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/Jackett.Common/Indexers/TorrentDay.cs b/src/Jackett.Common/Indexers/TorrentDay.cs index 7c6c3c03e..40e6fdb96 100644 --- a/src/Jackett.Common/Indexers/TorrentDay.cs +++ b/src/Jackett.Common/Indexers/TorrentDay.cs @@ -24,19 +24,18 @@ namespace Jackett.Common.Indexers public override string[] LegacySiteLinks { get; protected set; } = new string[] { "https://torrentday.it/", // temp down? + "https://torrentday.com" }; public override string[] AlternativeSiteLinks { get; protected set; } = new string[] { "https://tdonline.org/", "https://secure.torrentday.com/", "https://torrentday.eu/", - "https://torrentday.it/", "https://classic.torrentday.com/", "https://www.torrentday.com/", "https://td-update.com/", "https://www.torrentday.me/", "https://www.torrentday.ru/", - "https://www.torrentday.com/", "https://www.td.af/", }; @@ -49,7 +48,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.com/", + link: "https://www.torrentday.com/", caps: TorznabUtil.CreateDefaultTorznabTVCaps(), configService: configService, client: wc,