From 50cae0719f9c03fb1b06913a1eb9270db644b40b Mon Sep 17 00:00:00 2001 From: bakerboy448 <55419169+bakerboy448@users.noreply.github.com> Date: Mon, 2 Aug 2021 18:47:20 -0500 Subject: [PATCH] New: (Indexer) Alternative Links for TorrentDay Fixes #386 --- .../Indexers/Definitions/TorrentDay.cs | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/src/NzbDrone.Core/Indexers/Definitions/TorrentDay.cs b/src/NzbDrone.Core/Indexers/Definitions/TorrentDay.cs index fb5e07f96..b2c9c8bc2 100644 --- a/src/NzbDrone.Core/Indexers/Definitions/TorrentDay.cs +++ b/src/NzbDrone.Core/Indexers/Definitions/TorrentDay.cs @@ -20,7 +20,19 @@ namespace NzbDrone.Core.Indexers.Definitions { public override string Name => "TorrentDay"; - public override string[] IndexerUrls => new string[] { "https://torrentday.cool/" }; + public override string[] IndexerUrls => new string[] + { + "https://torrentday.cool/", + "https://tday.love/", + "https://secure.torrentday.com/", + "https://classic.torrentday.com/", + "https://www.torrentday.com/", + "https://torrentday.it/", + "https://td.findnemo.net/", + "https://td.getcrazy.me/", + "https://td.venom.global/", + "https://td.workisboring.net/" + }; public override string Description => "TorrentDay (TD) is a Private site for TV / MOVIES / GENERAL"; public override DownloadProtocol Protocol => DownloadProtocol.Torrent; public override IndexerPrivacy Privacy => IndexerPrivacy.Private;