From aa59da2f2247f404298c2ee0cce8417f7ce15ddc Mon Sep 17 00:00:00 2001 From: Yukine Date: Sun, 16 Jan 2022 08:15:47 +0100 Subject: [PATCH] Fixed: (MoreThanTV) use www url to fix cookie/redirect issues --- src/NzbDrone.Core/Indexers/Definitions/MoreThanTV.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NzbDrone.Core/Indexers/Definitions/MoreThanTV.cs b/src/NzbDrone.Core/Indexers/Definitions/MoreThanTV.cs index 2c1e5dffc..63069e75c 100644 --- a/src/NzbDrone.Core/Indexers/Definitions/MoreThanTV.cs +++ b/src/NzbDrone.Core/Indexers/Definitions/MoreThanTV.cs @@ -25,7 +25,7 @@ namespace NzbDrone.Core.Indexers.Definitions; public class MoreThanTV : TorrentIndexerBase { public override string Name => "MoreThanTV"; - public override string[] IndexerUrls => new[] { "https://morethantv.me/" }; + public override string[] IndexerUrls => new[] { "https://www.morethantv.me/" }; public override string Description => "Private torrent tracker for TV / MOVIES"; public override DownloadProtocol Protocol => DownloadProtocol.Torrent; public override IndexerPrivacy Privacy => IndexerPrivacy.Private;