diff --git a/src/Jackett.Common/Indexers/yts.cs b/src/Jackett.Common/Indexers/yts.cs index f75a5e45c..fb1ed9022 100644 --- a/src/Jackett.Common/Indexers/yts.cs +++ b/src/Jackett.Common/Indexers/yts.cs @@ -18,7 +18,7 @@ namespace Jackett.Common.Indexers public class Yts : BaseWebIndexer { public override string[] LegacySiteLinks { get; protected set; } = new string[] { - "https://yts.ag/", + "https://yts.am/", }; private string ApiEndpoint { get { return SiteLink + "api/v2/list_movies.json"; } } @@ -32,7 +32,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.am/", + link: "https://yts.ag/", caps: new TorznabCapabilities(), configService: configService, client: wc,