diff --git a/src/Jackett.Common/Indexers/Anthelion.cs b/src/Jackett.Common/Indexers/Anthelion.cs index c636e76f7..6140ea1a6 100644 --- a/src/Jackett.Common/Indexers/Anthelion.cs +++ b/src/Jackett.Common/Indexers/Anthelion.cs @@ -10,12 +10,12 @@ namespace Jackett.Common.Indexers [ExcludeFromCodeCoverage] public class Anthelion : GazelleTracker { - public override string[] LegacySiteLinks { get; protected set; } = new string[] { + public override string[] LegacySiteLinks { get; protected set; } = { "https://tehconnection.me/", }; public Anthelion(IIndexerConfigurationService configService, WebClient wc, Logger l, IProtectionService ps) - : base(id: "tehconnectionme", + : base(id: "anthelion", name: "Anthelion", // old name: TehConnection.me description: "A movies tracker", link: "https://anthelion.me/", diff --git a/src/Jackett.Common/Services/IndexerManagerService.cs b/src/Jackett.Common/Services/IndexerManagerService.cs index 7690b80e6..7384b380a 100644 --- a/src/Jackett.Common/Services/IndexerManagerService.cs +++ b/src/Jackett.Common/Services/IndexerManagerService.cs @@ -36,6 +36,7 @@ namespace Jackett.Common.Services // use: {"", ""} private readonly Dictionary renamedIndexers = new Dictionary { + {"tehconnectionme", "anthelion"}, {"nostalgic", "vhstapes"} };