mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-12 16:13:58 -07:00
Fixed issue with missing episodes incorrectly using include specials.
Added tests for missing episodes.
This commit is contained in:
parent
45b4bb4629
commit
4f68d07c9a
3 changed files with 125 additions and 8 deletions
|
@ -26,10 +26,9 @@ namespace NzbDrone.Web.Controllers
|
|||
[GridAction]
|
||||
public ActionResult _AjaxBinding()
|
||||
{
|
||||
//TODO: possible subsonic bug, IQuarible causes some issues so ToList() is called
|
||||
//https://github.com/subsonic/SubSonic-3.0/issues/263
|
||||
var missingEpisodes = _episodeProvider.EpisodesWithoutFiles(false);
|
||||
|
||||
var missing = _episodeProvider.EpisodesWithoutFiles(true).Select(e => new MissingEpisodeModel
|
||||
var missing = missingEpisodes.Select(e => new MissingEpisodeModel
|
||||
{
|
||||
EpisodeId = e.EpisodeId,
|
||||
SeasonNumber = e.SeasonNumber,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue