From 2f86b439e4410335f43574c9c98f31cafc8cd81c Mon Sep 17 00:00:00 2001 From: Garfield69 Date: Sat, 8 Jun 2019 07:27:21 +1200 Subject: [PATCH] yts: new domain. resolves #5422 --- src/Jackett.Common/Indexers/yts.cs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/Jackett.Common/Indexers/yts.cs b/src/Jackett.Common/Indexers/yts.cs index a804dc312..23b285796 100644 --- a/src/Jackett.Common/Indexers/yts.cs +++ b/src/Jackett.Common/Indexers/yts.cs @@ -19,6 +19,7 @@ namespace Jackett.Common.Indexers { 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 +33,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.lt/", caps: new TorznabCapabilities(), configService: configService, client: wc, @@ -173,7 +174,8 @@ namespace Jackett.Common.Indexers "&tr=udp://glotorrents.pw:6969/announce" + "&tr=udp://tracker.opentrackr.org:1337/announce" + "&tr=udp://torrent.gresille.org:80/announce" + - "&tr=udp://p4p.arenabg.com:1337&tr=udp://tracker.leechers-paradise.org:6969"; + "&tr=udp://p4p.arenabg.com:1337" + + "&tr=udp://tracker.leechers-paradise.org:6969"; release.MagnetUri = new Uri(magnet_uri); release.InfoHash = torrent_info.Value("hash");