From 64fab505edbecef8313b5981901a3f484c121c46 Mon Sep 17 00:00:00 2001 From: kaso17 <kaso17@users.noreply.github.com> Date: Fri, 1 Dec 2017 14:15:54 +0100 Subject: [PATCH] Psytorrents: removed (dead) --- README.md | 1 - src/Jackett.Common/Indexers/Psytorrents.cs | 29 ---------------------- 2 files changed, 30 deletions(-) delete mode 100644 src/Jackett.Common/Indexers/Psytorrents.cs diff --git a/README.md b/README.md index 973f3777..50f7d1c5 100644 --- a/README.md +++ b/README.md @@ -210,7 +210,6 @@ Developer note: The software implements the [Torznab](https://github.com/Sonarr/ * PolishTracker * Pretome * PrivateHD - * Psytorrents * PTFiles * Redacted (PassTheHeadphones) * RevolutionTT diff --git a/src/Jackett.Common/Indexers/Psytorrents.cs b/src/Jackett.Common/Indexers/Psytorrents.cs deleted file mode 100644 index 09d22c12..00000000 --- a/src/Jackett.Common/Indexers/Psytorrents.cs +++ /dev/null @@ -1,29 +0,0 @@ -using Jackett.Indexers.Abstract; -using Jackett.Models; -using Jackett.Services.Interfaces; -using Jackett.Utils.Clients; -using NLog; - -namespace Jackett.Indexers -{ - public class Psytorrents : GazelleTracker - { - public Psytorrents(IIndexerConfigurationService configService, WebClient webClient, Logger logger, IProtectionService protectionService) - : base(name: "Psytorrents", - desc: "Psytorrents (PSY) is a Private Torrent Tracker for ELECTRONIC MUSIC", - link: "https://psytorrents.info/", - configService: configService, - logger: logger, - protectionService: protectionService, - webClient: webClient - ) - { - Language = "en-us"; - Type = "private"; - - AddCategoryMapping(1, TorznabCatType.Audio, "Music"); - AddCategoryMapping(2, TorznabCatType.Movies, "Movies"); - AddCategoryMapping(3, TorznabCatType.PC0day, "App"); - } - } -} -- GitLab