mirror of
https://github.com/Jackett/Jackett.git
synced 2025-09-17 17:34:09 +02:00
* 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
This commit is contained in:
@@ -24,19 +24,18 @@ namespace Jackett.Common.Indexers
|
|||||||
|
|
||||||
public override string[] LegacySiteLinks { get; protected set; } = new string[] {
|
public override string[] LegacySiteLinks { get; protected set; } = new string[] {
|
||||||
"https://torrentday.it/", // temp down?
|
"https://torrentday.it/", // temp down?
|
||||||
|
"https://torrentday.com"
|
||||||
};
|
};
|
||||||
|
|
||||||
public override string[] AlternativeSiteLinks { get; protected set; } = new string[] {
|
public override string[] AlternativeSiteLinks { get; protected set; } = new string[] {
|
||||||
"https://tdonline.org/",
|
"https://tdonline.org/",
|
||||||
"https://secure.torrentday.com/",
|
"https://secure.torrentday.com/",
|
||||||
"https://torrentday.eu/",
|
"https://torrentday.eu/",
|
||||||
"https://torrentday.it/",
|
|
||||||
"https://classic.torrentday.com/",
|
"https://classic.torrentday.com/",
|
||||||
"https://www.torrentday.com/",
|
"https://www.torrentday.com/",
|
||||||
"https://td-update.com/",
|
"https://td-update.com/",
|
||||||
"https://www.torrentday.me/",
|
"https://www.torrentday.me/",
|
||||||
"https://www.torrentday.ru/",
|
"https://www.torrentday.ru/",
|
||||||
"https://www.torrentday.com/",
|
|
||||||
"https://www.td.af/",
|
"https://www.td.af/",
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -49,7 +48,7 @@ namespace Jackett.Common.Indexers
|
|||||||
public TorrentDay(IIndexerConfigurationService configService, WebClient wc, Logger l, IProtectionService ps)
|
public TorrentDay(IIndexerConfigurationService configService, WebClient wc, Logger l, IProtectionService ps)
|
||||||
: base(name: "TorrentDay",
|
: base(name: "TorrentDay",
|
||||||
description: "TorrentDay (TD) is a Private site for TV / MOVIES / GENERAL",
|
description: "TorrentDay (TD) is a Private site for TV / MOVIES / GENERAL",
|
||||||
link: "https://torrentday.com/",
|
link: "https://www.torrentday.com/",
|
||||||
caps: TorznabUtil.CreateDefaultTorznabTVCaps(),
|
caps: TorznabUtil.CreateDefaultTorznabTVCaps(),
|
||||||
configService: configService,
|
configService: configService,
|
||||||
client: wc,
|
client: wc,
|
||||||
|
Reference in New Issue
Block a user