Fixed: Some anime season 1 parsing

This commit is contained in:
Mark McDowall
2015-04-10 07:32:34 -07:00
parent cfefed34fc
commit 62f4fc5e58
3 changed files with 78 additions and 23 deletions

View File

@@ -188,7 +188,10 @@ namespace NzbDrone.Core.Parser
else if (sceneSource)
{
if (sceneSeasonNumber.HasValue && (sceneSeasonNumber == 0 || sceneSeasonNumber > 1))
// Is there a reason why we excluded season 1 from this handling before?
// Might have something to do with the scene name to season number check
// If this needs to be reverted tests will need to be added
if (sceneSeasonNumber.HasValue)
{
var episodes = _episodeService.FindEpisodesBySceneNumbering(series.Id, sceneSeasonNumber.Value, absoluteEpisodeNumber);