From 80d295cce5fcb55363f3dc1417752674c2b71af5 Mon Sep 17 00:00:00 2001 From: Qstick Date: Sun, 27 Feb 2022 22:27:13 -0600 Subject: [PATCH] New: (HDTorrents) Add hd-torrents.org as Url option Fixes #853 --- src/NzbDrone.Core/Indexers/Definitions/HDTorrents.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NzbDrone.Core/Indexers/Definitions/HDTorrents.cs b/src/NzbDrone.Core/Indexers/Definitions/HDTorrents.cs index e7957c0ea..3fdbc97cd 100644 --- a/src/NzbDrone.Core/Indexers/Definitions/HDTorrents.cs +++ b/src/NzbDrone.Core/Indexers/Definitions/HDTorrents.cs @@ -24,7 +24,7 @@ namespace NzbDrone.Core.Indexers.Definitions { public override string Name => "HD-Torrents"; - public override string[] IndexerUrls => new string[] { "https://hdts.ru/" }; + public override string[] IndexerUrls => new string[] { "https://hdts.ru/", "https://hd-torrents.org/" }; public override string Description => "HD-Torrents is a private torrent website with HD torrents and strict rules on their content."; private string LoginUrl => Settings.BaseUrl + "login.php"; public override DownloadProtocol Protocol => DownloadProtocol.Torrent;