1
0
Fork 0
mirror of https://github.com/Jackett/Jackett synced 2025-01-01 12:46:23 +00:00

anthelion: rename old id tehconnectionme #8355 (#8667)

This commit is contained in:
Diego Heras 2020-05-15 23:50:04 +02:00 committed by GitHub
parent 6ef2dec5cf
commit 35358e3c76
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

View file

@ -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/",

View file

@ -36,6 +36,7 @@ namespace Jackett.Common.Services
// use: {"<old id>", "<new id>"}
private readonly Dictionary<string, string> renamedIndexers = new Dictionary<string, string>
{
{"tehconnectionme", "anthelion"},
{"nostalgic", "vhstapes"}
};