diff --git a/NzbDrone.Core/Jobs/ImportNewSeriesJob.cs b/NzbDrone.Core/Jobs/ImportNewSeriesJob.cs index 2a42c523b..4a7a679e2 100644 --- a/NzbDrone.Core/Jobs/ImportNewSeriesJob.cs +++ b/NzbDrone.Core/Jobs/ImportNewSeriesJob.cs @@ -106,6 +106,8 @@ namespace NzbDrone.Core.Jobs public void AutoIgnoreSeasons(int seriesId) { + //Todo: Need to convert this over to ObjectDb + return; var episodeFiles = _mediaFileProvider.GetSeriesFiles(seriesId); if (episodeFiles.Count() != 0) diff --git a/NzbDrone.Core/Providers/TvRageProvider.cs b/NzbDrone.Core/Providers/TvRageProvider.cs index 9ca8bc103..9bce78fed 100644 --- a/NzbDrone.Core/Providers/TvRageProvider.cs +++ b/NzbDrone.Core/Providers/TvRageProvider.cs @@ -53,7 +53,7 @@ namespace NzbDrone.Core.Providers show.Seasons = s.Element("seasons").ConvertTo(); show.Status = s.Element("status").Value; show.RunTime = s.Element("seasons").ConvertTo(); - show.AirTime = s.Element("seasons").ConvertTo(); + show.AirTime = s.Element("airtime").ConvertTo(); show.AirDay = s.Element("airday").ConvertToDayOfWeek(); searchResults.Add(show); diff --git a/NzbDrone.Core/Qualities/QualitySizeService.cs b/NzbDrone.Core/Qualities/QualitySizeService.cs index 16ac5b0ed..18bee04c8 100644 --- a/NzbDrone.Core/Qualities/QualitySizeService.cs +++ b/NzbDrone.Core/Qualities/QualitySizeService.cs @@ -54,7 +54,7 @@ namespace NzbDrone.Core.Qualities foreach (var quality in Quality.All().Where(q => q.Id > 0)) { - if(existing.SingleOrDefault(s => s.QualityId == quality.Id) == null) + if(!existing.Any(s => s.QualityId == quality.Id)) { _qualitySizeRepository.Insert(new QualitySize { diff --git a/NzbDrone.Web/MediaCover/Banners/1.jpg b/NzbDrone.Web/MediaCover/Banners/1.jpg deleted file mode 100644 index 05f3b253b..000000000 Binary files a/NzbDrone.Web/MediaCover/Banners/1.jpg and /dev/null differ