move from apollo to orpheus (#4149)

* move from apollo to orpheus

apollo is now https://orpheus.network/
this is not tested, but I imagine the catergories are the same

* fix constructor

* Update README.md
This commit is contained in:
Senan Kelly
2018-11-12 14:39:05 +00:00
committed by kaso17
parent cb7acddd61
commit 864eb6f1cd
2 changed files with 6 additions and 6 deletions

View File

@@ -7,12 +7,12 @@ using NLog;
namespace Jackett.Common.Indexers
{
public class Apollo : GazelleTracker
public class Orpheus : GazelleTracker
{
public Apollo(IIndexerConfigurationService configService, WebClient webClient, Logger logger, IProtectionService protectionService)
: base(name: "Apollo",
public Orpheus(IIndexerConfigurationService configService, WebClient webClient, Logger logger, IProtectionService protectionService)
: base(name: "Orpheus",
desc: "A music tracker",
link: "https://apollo.rip/",
link: "https://orpheus.network/",
configService: configService,
logger: logger,
protectionService: protectionService,
@@ -33,4 +33,4 @@ namespace Jackett.Common.Indexers
AddCategoryMapping(7, TorznabCatType.Books, "Comics");
}
}
}
}