diff --git a/NzbDrone.Core/Providers/Jobs/BacklogSearchJob.cs b/NzbDrone.Core/Providers/Jobs/BacklogSearchJob.cs index aa53b9b5d..a0c1d71c6 100644 --- a/NzbDrone.Core/Providers/Jobs/BacklogSearchJob.cs +++ b/NzbDrone.Core/Providers/Jobs/BacklogSearchJob.cs @@ -59,6 +59,8 @@ namespace NzbDrone.Core.Providers.Jobs var countInDb = _episodeProvider.GetEpisodeNumbersBySeason(seriesId, seasonNumber).Count; + //Todo: Download a full season if more than n% is missing? + if (count != countInDb) { //Add the episodes to be processed manually diff --git a/NzbDrone.Web/Views/Series/Index.cshtml b/NzbDrone.Web/Views/Series/Index.cshtml index 03208a7e4..20f17f398 100644 --- a/NzbDrone.Web/Views/Series/Index.cshtml +++ b/NzbDrone.Web/Views/Series/Index.cshtml @@ -85,7 +85,7 @@ NzbDrone { commands.Edit().ButtonType(GridButtonType.Image); commands.Delete().ButtonType(GridButtonType.Image); - }).Title("Actions").Width(80); + }).Title("Actions").Width(90); }) .Editable(editor => editor.Mode(GridEditMode.PopUp))