mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-30 23:45:46 +02:00
Fixed: (AnimeBytes) Parse season only for category Anime
This commit is contained in:
@@ -383,12 +383,13 @@ namespace NzbDrone.Core.Indexers.Definitions
|
||||
}
|
||||
}
|
||||
|
||||
if (_settings.EnableSonarrCompatibility)
|
||||
if (_settings.EnableSonarrCompatibility && categoryName == "Anime")
|
||||
{
|
||||
season ??= ParseSeasonFromTitles(synonyms);
|
||||
}
|
||||
|
||||
season ??= _settings.EnableSonarrCompatibility && categoryName == "Anime" ? 1 : null;
|
||||
// Default to S01
|
||||
season ??= 1;
|
||||
}
|
||||
|
||||
if (season is > 0 || episode is > 0)
|
||||
{
|
||||
|
Reference in New Issue
Block a user