mirror of
https://github.com/Jackett/Jackett
synced 2025-01-19 14:10:07 +00:00
parent
64dde8d523
commit
404b2caa63
1 changed files with 16 additions and 20 deletions
|
@ -23,15 +23,10 @@ namespace Jackett.Common.Indexers
|
|||
private string TakeLoginUrl => SiteLink + "takelogin.php";
|
||||
private string SearchUrl => SiteLink + "torrents.php";
|
||||
|
||||
private new ConfigurationDataRecaptchaLogin configData
|
||||
{
|
||||
get => (ConfigurationDataRecaptchaLogin)base.configData;
|
||||
set => base.configData = value;
|
||||
}
|
||||
private new ConfigurationDataRecaptchaLogin configData => (ConfigurationDataRecaptchaLogin)base.configData;
|
||||
|
||||
public BitHdtv(IIndexerConfigurationService configService, WebClient w, Logger l, IProtectionService ps) :
|
||||
base(
|
||||
name: "BIT-HDTV",
|
||||
public BitHdtv(IIndexerConfigurationService configService, WebClient w, Logger l, IProtectionService ps)
|
||||
: base("BIT-HDTV",
|
||||
description: "BIT-HDTV - Home of High Definition",
|
||||
link: "https://www.bit-hdtv.com/",
|
||||
caps: new TorznabCapabilities
|
||||
|
@ -55,6 +50,7 @@ namespace Jackett.Common.Indexers
|
|||
AddCategoryMapping(6, TorznabCatType.AudioLossless); // HQ Audio
|
||||
AddCategoryMapping(7, TorznabCatType.Movies); // Movies
|
||||
AddCategoryMapping(8, TorznabCatType.AudioVideo); // Music Videos
|
||||
AddCategoryMapping(9, TorznabCatType.Other); // Other
|
||||
AddCategoryMapping(5, TorznabCatType.TVSport); // Sports
|
||||
AddCategoryMapping(10, TorznabCatType.TV); // TV
|
||||
AddCategoryMapping(12, TorznabCatType.TV); // TV/Seasonpack
|
||||
|
|
Loading…
Reference in a new issue