diff --git a/src/Jackett.Common/Indexers/Redacted.cs b/src/Jackett.Common/Indexers/Redacted.cs index ee102f6b2..b5f0b2ed0 100644 --- a/src/Jackett.Common/Indexers/Redacted.cs +++ b/src/Jackett.Common/Indexers/Redacted.cs @@ -14,7 +14,7 @@ namespace Jackett.Common.Indexers public class Redacted : GazelleTracker { public Redacted(IIndexerConfigurationService configService, WebClient wc, Logger l, IProtectionService ps) - : base(id: "passtheheadphones", + : base(id: "redacted", name: "Redacted", description: "A music tracker", link: "https://redacted.ch/", diff --git a/src/Jackett.Common/Services/IndexerManagerService.cs b/src/Jackett.Common/Services/IndexerManagerService.cs index ffb6966b2..ea862a93b 100644 --- a/src/Jackett.Common/Services/IndexerManagerService.cs +++ b/src/Jackett.Common/Services/IndexerManagerService.cs @@ -36,9 +36,10 @@ namespace Jackett.Common.Services // use: {"", ""} private readonly Dictionary renamedIndexers = new Dictionary { + {"nostalgic", "vhstapes"}, + {"passtheheadphones", "redacted"}, {"tehconnectionme", "anthelion"}, - {"transmithenet", "nebulance"}, - {"nostalgic", "vhstapes"} + {"transmithenet", "nebulance"} }; public IndexerManagerService(IIndexerConfigurationService config, IProtectionService protectionService, WebClient webClient, Logger l, ICacheService cache, IProcessService processService, IConfigurationService globalConfigService, ServerConfig serverConfig)