mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-21 05:53:33 -07:00
Fixed EpisodeSorting examples layout.
Added Missing to main UI. Add links to series from History and Missing. Image for search link on Missing.
This commit is contained in:
parent
8ce222a10c
commit
f02e92b005
13 changed files with 61 additions and 30 deletions
|
@ -4,6 +4,7 @@ using System.Linq;
|
|||
using NLog;
|
||||
using NzbDrone.Core.Model;
|
||||
using NzbDrone.Core.Model.Notification;
|
||||
using NzbDrone.Core.Model.Search;
|
||||
using NzbDrone.Core.Repository;
|
||||
|
||||
namespace NzbDrone.Core.Providers.Jobs
|
||||
|
@ -36,9 +37,9 @@ namespace NzbDrone.Core.Providers.Jobs
|
|||
|
||||
public void Start(ProgressNotification notification, int targetId, int secondaryTargetId)
|
||||
{
|
||||
var missingEpisodes =
|
||||
_episodeProvider.EpisodesWithoutFiles(true).GroupBy(e => new { e.SeriesId, e.SeasonNumber });
|
||||
|
||||
var missingEpisodes = _episodeProvider.EpisodesWithoutFiles(true)
|
||||
.GroupBy(e => new { e.SeriesId, e.SeasonNumber });
|
||||
|
||||
var individualEpisodes = new List<Episode>();
|
||||
|
||||
Logger.Trace("Processing missing episodes list");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue