mirror of https://github.com/Radarr/Radarr
SeasonCount excludes specials
This commit is contained in:
parent
1c77712bf7
commit
34b5a833f5
|
@ -1,5 +1,6 @@
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
using NzbDrone.Api.REST;
|
using NzbDrone.Api.REST;
|
||||||
using NzbDrone.Core.MediaCover;
|
using NzbDrone.Core.MediaCover;
|
||||||
using NzbDrone.Core.Tv;
|
using NzbDrone.Core.Tv;
|
||||||
|
@ -19,9 +20,9 @@ namespace NzbDrone.Api.Series
|
||||||
{
|
{
|
||||||
get
|
get
|
||||||
{
|
{
|
||||||
if (Seasons != null) return Seasons.Count;
|
if (Seasons == null) return 0;
|
||||||
|
|
||||||
return 0;
|
return Seasons.Where(s => s.SeasonNumber > 0).Count();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue