From 6752eb6321b73b8ff1caeddbb969648f84450bbd Mon Sep 17 00:00:00 2001 From: Garfield69 Date: Sun, 2 Feb 2020 07:20:51 +1300 Subject: [PATCH] YTS: new domain .mx #7062 --- src/Jackett.Common/Indexers/yts.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Jackett.Common/Indexers/yts.cs b/src/Jackett.Common/Indexers/yts.cs index 7318c6adc..985b18b30 100644 --- a/src/Jackett.Common/Indexers/yts.cs +++ b/src/Jackett.Common/Indexers/yts.cs @@ -20,6 +20,7 @@ namespace Jackett.Common.Indexers public override string[] LegacySiteLinks { get; protected set; } = new string[] { "https://yts.ag/", "https://yts.am/", + "https://yts.lt/", }; private string ApiEndpoint { get { return SiteLink + "api/v2/list_movies.json"; } } @@ -33,7 +34,7 @@ namespace Jackett.Common.Indexers public Yts(IIndexerConfigurationService configService, WebClient wc, Logger l, IProtectionService ps) : base(name: "YTS", description: "YTS is a Public torrent site specialising in HD movies of small size", - link: "https://yts.lt/", + link: "https://yts.mx/", caps: new TorznabCapabilities(), configService: configService, client: wc,