From 35358e3c76067d9ab5d3e5908f1ace39ef3b8a64 Mon Sep 17 00:00:00 2001 From: Diego Heras Date: Fri, 15 May 2020 23:50:04 +0200 Subject: [PATCH] anthelion: rename old id tehconnectionme #8355 (#8667) --- src/Jackett.Common/Indexers/Anthelion.cs | 4 ++-- src/Jackett.Common/Services/IndexerManagerService.cs | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) 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"} };