1
0
Fork 0
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:
WSHaRK993 2019-01-25 22:36:51 +01:00 committed by garfield69
parent 649d53f857
commit ba565e0376

View file

@ -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");
}
}
}