Fixed: Issue processing full season releases

This commit is contained in:
Mark McDowall 2013-12-22 17:32:50 -08:00
parent c2a09b70f4
commit 80b2e605a9
3 changed files with 10 additions and 4 deletions

View file

@ -112,6 +112,11 @@ namespace NzbDrone.Core.Parser
{
var result = new List<Episode>();
if (parsedEpisodeInfo.FullSeason)
{
return _episodeService.GetEpisodesBySeason(series.Id, parsedEpisodeInfo.SeasonNumber);
}
if (parsedEpisodeInfo.IsDaily())
{
if (series.SeriesType == SeriesTypes.Standard)