mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-04-24 05:47:22 -04:00
Fixed: (AnimeBytes) Parse season only for category Anime
This commit is contained in:
parent
57e1b6b4a0
commit
4a5e923999
1 changed files with 4 additions and 3 deletions
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue