mirror of https://github.com/Jackett/Jackett
* 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:
parent
d29132a540
commit
e19d59c4ab
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue