From 155f72cc45b3db3a2cfc505a9d3956722c336d72 Mon Sep 17 00:00:00 2001 From: Bogdan Date: Sun, 15 Jan 2023 02:24:05 +0200 Subject: [PATCH] Fixed: (AvistaZ/CinemaZ) Remove Music category mapping --- src/NzbDrone.Core/Indexers/Definitions/AvistaZ.cs | 1 - src/NzbDrone.Core/Indexers/Definitions/CinemaZ.cs | 1 - 2 files changed, 2 deletions(-) diff --git a/src/NzbDrone.Core/Indexers/Definitions/AvistaZ.cs b/src/NzbDrone.Core/Indexers/Definitions/AvistaZ.cs index e167e52f6..7a55f9977 100644 --- a/src/NzbDrone.Core/Indexers/Definitions/AvistaZ.cs +++ b/src/NzbDrone.Core/Indexers/Definitions/AvistaZ.cs @@ -61,7 +61,6 @@ namespace NzbDrone.Core.Indexers.Definitions caps.Categories.AddCategoryMapping(2, NewznabStandardCategory.TVUHD); caps.Categories.AddCategoryMapping(2, NewznabStandardCategory.TVHD); caps.Categories.AddCategoryMapping(2, NewznabStandardCategory.TVSD); - caps.Categories.AddCategoryMapping(3, NewznabStandardCategory.Audio); return caps; } diff --git a/src/NzbDrone.Core/Indexers/Definitions/CinemaZ.cs b/src/NzbDrone.Core/Indexers/Definitions/CinemaZ.cs index 6bc6f9e14..16f819574 100644 --- a/src/NzbDrone.Core/Indexers/Definitions/CinemaZ.cs +++ b/src/NzbDrone.Core/Indexers/Definitions/CinemaZ.cs @@ -56,7 +56,6 @@ namespace NzbDrone.Core.Indexers.Definitions caps.Categories.AddCategoryMapping(2, NewznabStandardCategory.TVUHD); caps.Categories.AddCategoryMapping(2, NewznabStandardCategory.TVHD); caps.Categories.AddCategoryMapping(2, NewznabStandardCategory.TVSD); - caps.Categories.AddCategoryMapping(3, NewznabStandardCategory.Audio); return caps; }