Default to starting at lowest season above 0

This commit is contained in:
Mark McDowall
2013-09-09 23:22:54 -07:00
parent 33986a9185
commit 97eb5ffc61
5 changed files with 29 additions and 14 deletions

View File

@@ -83,7 +83,7 @@ namespace NzbDrone.Core.MetadataSource
series.Seasons = show.seasons.Select(s => new Tv.Season
{
SeasonNumber = s.season
}).ToList();
}).OrderByDescending(s => s.SeasonNumber).ToList();
series.Images.Add(new MediaCover.MediaCover { CoverType = MediaCoverTypes.Banner, Url = show.images.banner });
series.Images.Add(new MediaCover.MediaCover { CoverType = MediaCoverTypes.Poster, Url = GetPosterThumbnailUrl(show.images.poster) });