mirror of
https://github.com/Sonarr/Sonarr.git
synced 2025-04-24 06:17:08 -04:00
Needed to reverse the tuple order for Episode count.
This commit is contained in:
parent
383dfe302f
commit
b68784060b
1 changed files with 1 additions and 1 deletions
|
@ -194,7 +194,7 @@ namespace NzbDrone.Core.Providers
|
|||
var episodeTotal = allEpisodes.Where(e => !e.Ignored && e.AirDate <= DateTime.Today && e.AirDate.Year > 1900).ToList();
|
||||
var avilableEpisodes = episodeTotal.Where(e => e.EpisodeFileId > 0);
|
||||
|
||||
return new Tuple<int, int>(episodeTotal.Count, avilableEpisodes.Count());
|
||||
return new Tuple<int, int>(avilableEpisodes.Count(), episodeTotal.Count);
|
||||
}
|
||||
|
||||
private List<string> GetMediaFileList(string path)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue