mirror of
https://github.com/Jackett/Jackett
synced 2025-01-03 21:57:49 +00:00
Delete HDForever.cs (#4539)
This commit is contained in:
parent
649d53f857
commit
ba565e0376
1 changed files with 0 additions and 29 deletions
|
@ -1,29 +0,0 @@
|
|||
using Jackett.Common.Indexers.Abstract;
|
||||
using Jackett.Common.Models;
|
||||
using Jackett.Common.Services.Interfaces;
|
||||
using Jackett.Common.Utils.Clients;
|
||||
using NLog;
|
||||
|
||||
namespace Jackett.Common.Indexers
|
||||
{
|
||||
public class HDForever : GazelleTracker
|
||||
{
|
||||
public HDForever(IIndexerConfigurationService configService, WebClient webClient, Logger logger, IProtectionService protectionService)
|
||||
: base(name: "HD-Forever",
|
||||
desc: "HD-Forever (HD-F) is a FRENCH Private Torrent Tracker for HD MOVIES",
|
||||
link: "https://hdf.world/",
|
||||
configService: configService,
|
||||
logger: logger,
|
||||
protectionService: protectionService,
|
||||
webClient: webClient,
|
||||
supportsFreeleechTokens: true
|
||||
)
|
||||
{
|
||||
Language = "fr-fr";
|
||||
Type = "private";
|
||||
|
||||
this.supportsCategories = false; // they have categories but the API never returns the category, always default to Movie
|
||||
AddCategoryMapping(1, TorznabCatType.MoviesHD, "Movie");
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue