SeasonCount excludes specials

This commit is contained in:
Mark McDowall 2013-09-25 17:14:27 -07:00
parent 1c77712bf7
commit 34b5a833f5
1 changed files with 3 additions and 2 deletions

View File

@ -1,5 +1,6 @@
using System;
using System.Collections.Generic;
using System.Linq;
using NzbDrone.Api.REST;
using NzbDrone.Core.MediaCover;
using NzbDrone.Core.Tv;
@ -19,9 +20,9 @@ namespace NzbDrone.Api.Series
{
get
{
if (Seasons != null) return Seasons.Count;
if (Seasons == null) return 0;
return 0;
return Seasons.Where(s => s.SeasonNumber > 0).Count();
}
}