From 576efcccccd9127dc99c182f3d446cb17e3bb931 Mon Sep 17 00:00:00 2001 From: Tawagoto Date: Sun, 20 Oct 2019 20:09:41 +0200 Subject: [PATCH] xthor: New domain .tk (#6199) --- src/Jackett.Common/Indexers/Xthor.cs | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/Jackett.Common/Indexers/Xthor.cs b/src/Jackett.Common/Indexers/Xthor.cs index 1e18f0fb0..9f0dbfd12 100644 --- a/src/Jackett.Common/Indexers/Xthor.cs +++ b/src/Jackett.Common/Indexers/Xthor.cs @@ -24,10 +24,11 @@ namespace Jackett.Common.Indexers /// public class Xthor : BaseCachingWebIndexer { - private static string ApiEndpoint => "https://api.xthor.to/"; + private static string ApiEndpoint => "https://api.xthor.tk/"; public override string[] LegacySiteLinks { get; protected set; } = new string[] { "https://xthor.bz/", + "https://xthor.to", }; private string TorrentCommentUrl => TorrentDescriptionUrl; @@ -44,13 +45,13 @@ namespace Jackett.Common.Indexers : base( name: "Xthor", description: "General French Private Tracker", - link: "https://xthor.to/", + link: "https://xthor.tk/", caps: new TorznabCapabilities(), configService: configService, client: w, logger: l, p: ps, - downloadBase: "https://xthor.to/download.php?torrent=", + downloadBase: "https://xthor.tk/download.php?torrent=", configData: new ConfigurationDataXthor()) { Encoding = Encoding.UTF8;