From 06d9c157d894ad4b3808461c004cf728f90bdc13 Mon Sep 17 00:00:00 2001 From: Davo1624 <85573606+Davo1624@users.noreply.github.com> Date: Wed, 15 Dec 2021 17:27:50 -0500 Subject: [PATCH] Fixed: (Orpheus) Map Categories Comedy & E-Learning Videos to 'Other' indexer does not actually have movies and tv --- src/NzbDrone.Core/Indexers/Definitions/Orpheus.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/NzbDrone.Core/Indexers/Definitions/Orpheus.cs b/src/NzbDrone.Core/Indexers/Definitions/Orpheus.cs index 2e1b96df5..f09a81a50 100644 --- a/src/NzbDrone.Core/Indexers/Definitions/Orpheus.cs +++ b/src/NzbDrone.Core/Indexers/Definitions/Orpheus.cs @@ -45,8 +45,8 @@ protected override IndexerCapabilities SetCapabilities() caps.Categories.AddCategoryMapping(2, NewznabStandardCategory.PC, "Applications"); caps.Categories.AddCategoryMapping(3, NewznabStandardCategory.Books, "E-Books"); caps.Categories.AddCategoryMapping(4, NewznabStandardCategory.AudioAudiobook, "Audiobooks"); - caps.Categories.AddCategoryMapping(5, NewznabStandardCategory.Movies, "E-Learning Videos"); - caps.Categories.AddCategoryMapping(6, NewznabStandardCategory.TV, "Comedy"); + caps.Categories.AddCategoryMapping(5, NewznabStandardCategory.Other, "E-Learning Videos"); + caps.Categories.AddCategoryMapping(6, NewznabStandardCategory.Other, "Comedy"); caps.Categories.AddCategoryMapping(7, NewznabStandardCategory.Books, "Comics"); return caps;