mirror of
https://github.com/Jackett/Jackett.git
synced 2025-09-17 17:34:09 +02:00
animebytes: add category mapping for ONA
This commit is contained in:
@@ -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<int> { 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<int> { TorznabCatType.Movies.ID };
|
||||
|
Reference in New Issue
Block a user