From 36f0308c7a06b54f9110be2e74756d735fead65f Mon Sep 17 00:00:00 2001 From: Bogdan Date: Sat, 8 Apr 2023 02:45:16 +0300 Subject: [PATCH] animebytes: add category mapping for ONA --- src/Jackett.Common/Indexers/AnimeBytes.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Jackett.Common/Indexers/AnimeBytes.cs b/src/Jackett.Common/Indexers/AnimeBytes.cs index 1963e27de..e522b138d 100644 --- a/src/Jackett.Common/Indexers/AnimeBytes.cs +++ b/src/Jackett.Common/Indexers/AnimeBytes.cs @@ -410,14 +410,14 @@ namespace Jackett.Common.Indexers if (searchType == "anime") { - if (groupName == "TV Series" || groupName == "OVA") + // Ignore these categories as they'll cause hell with the matcher + // TV Special, DVD Special, BD Special + + if (groupName == "TV Series" || groupName == "OVA" || groupName == "ONA") { category = new List { TorznabCatType.TVAnime.ID }; } - // Ignore these categories as they'll cause hell with the matcher - // TV Special, OVA, ONA, DVD Special, BD Special - if (groupName == "Movie" || groupName == "Live Action Movie") { category = new List { TorznabCatType.Movies.ID };