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,