Added filtering to the missing View.

This commit is contained in:
Mark McDowall 2011-05-02 23:03:49 -07:00
parent 0f170e8a03
commit 7b4ac03748
2 changed files with 14 additions and 6 deletions

View file

@ -29,7 +29,7 @@ namespace NzbDrone.Web.Controllers
//TODO: possible subsonic bug, IQuarible causes some issues so ToList() is called
//https://github.com/subsonic/SubSonic-3.0/issues/263
var missing = _episodeProvider.EpisodesWithoutFiles(false).Select(e => new MissingEpisodeModel
var missing = _episodeProvider.EpisodesWithoutFiles(true).Select(e => new MissingEpisodeModel
{
EpisodeId = e.EpisodeId,
SeasonNumber = e.SeasonNumber,