diff --git a/README.md b/README.md index 973f37774..50f7d1c5d 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 09d22c125..000000000 --- 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"); - } - } -}