Fixed: Incorrectly treating single episode releases as full season releases

This commit is contained in:
Mark McDowall 2013-12-23 20:17:20 -08:00
commit a5a02ce90e
2 changed files with 12 additions and 4 deletions

View file

@ -336,7 +336,8 @@ namespace NzbDrone.Core.Parser
var count = last - first + 1;
result.AbsoluteEpisodeNumbers = Enumerable.Range(first, count).ToArray();
}
else
if (!episodeCaptures.Any() && !absoluteEpisodeCaptures.Any())
{
//Check to see if this is an "Extras" or "SUBPACK" release, if it is, return NULL
//Todo: Set a "Extras" flag in EpisodeParseResult if we want to download them ever