diff --git a/src/Jackett.Common/Indexers/Xthor.cs b/src/Jackett.Common/Indexers/Xthor.cs index 40a998ab5..f47aa5aeb 100644 --- a/src/Jackett.Common/Indexers/Xthor.cs +++ b/src/Jackett.Common/Indexers/Xthor.cs @@ -25,6 +25,11 @@ namespace Jackett.Indexers public class Xthor : BaseCachingWebIndexer { private static string ApiEndpoint => "https://api.xthor.to/"; + + public override string[] LegacySiteLinks { get; protected set; } = new string[] { + "https://xthor.bz/", + }; + private string TorrentCommentUrl => TorrentDescriptionUrl; private string TorrentDescriptionUrl => SiteLink + "details.php?id={id}"; private bool DevMode => ConfigData.DevMode.Value;