mirror of
https://github.com/Sonarr/Sonarr.git
synced 2026-04-27 23:06:29 -04:00
Parse specials directly in ParsingService rather than callee.
This commit is contained in:
@@ -234,6 +234,11 @@ namespace NzbDrone.Core.Parser
|
||||
return GetAnimeEpisodes(series, parsedEpisodeInfo, mappedSeasonNumber, sceneSource, searchCriteria);
|
||||
}
|
||||
|
||||
if (parsedEpisodeInfo.IsPossibleSceneSeasonSpecial)
|
||||
{
|
||||
parsedEpisodeInfo = ParseSpecialEpisodeTitle(parsedEpisodeInfo, parsedEpisodeInfo.ReleaseTitle, series) ?? parsedEpisodeInfo;
|
||||
}
|
||||
|
||||
return GetStandardEpisodes(series, parsedEpisodeInfo, mappedSeasonNumber, sceneSource, searchCriteria);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user