From 83ca724120bd8203637a53b4e6382af13f2f3cab Mon Sep 17 00:00:00 2001 From: bakerboy448 <55419169+bakerboy448@users.noreply.github.com> Date: Tue, 8 Mar 2022 20:39:20 -0600 Subject: [PATCH] Fixed: (Redacted) Map Categories Comedy & E-Learning Videos to 'Other' indexer does not actually have movies and tv --- src/NzbDrone.Core/Indexers/Definitions/Redacted.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/NzbDrone.Core/Indexers/Definitions/Redacted.cs b/src/NzbDrone.Core/Indexers/Definitions/Redacted.cs index 4aef85308..bc6e8a7fd 100644 --- a/src/NzbDrone.Core/Indexers/Definitions/Redacted.cs +++ b/src/NzbDrone.Core/Indexers/Definitions/Redacted.cs @@ -73,8 +73,8 @@ namespace NzbDrone.Core.Indexers.Definitions caps.Categories.AddCategoryMapping(2, NewznabStandardCategory.PC, "Applications"); caps.Categories.AddCategoryMapping(3, NewznabStandardCategory.BooksEBook, "E-Books"); caps.Categories.AddCategoryMapping(4, NewznabStandardCategory.AudioAudiobook, "Audiobooks"); - caps.Categories.AddCategoryMapping(5, NewznabStandardCategory.MoviesOther, "E-Learning Videos"); - caps.Categories.AddCategoryMapping(6, NewznabStandardCategory.TVOther, "Comedy"); + caps.Categories.AddCategoryMapping(5, NewznabStandardCategory.Other, "E-Learning Videos"); + caps.Categories.AddCategoryMapping(6, NewznabStandardCategory.Other, "Comedy"); caps.Categories.AddCategoryMapping(7, NewznabStandardCategory.BooksComics, "Comics"); return caps;