still very broken

This commit is contained in:
kay.one
2013-02-18 22:56:02 -08:00
parent 2d4998d52d
commit 4504232956
43 changed files with 264 additions and 339 deletions

View File

@@ -45,7 +45,7 @@ namespace NzbDrone.Core.Jobs
if (options != null)
{
Series series = _seriesProvider.GetSeries(options.SeriesId);
Series series = _seriesProvider.Get(options.SeriesId);
if (series != null && !String.IsNullOrEmpty(series.BannerUrl))
{
@@ -55,7 +55,7 @@ namespace NzbDrone.Core.Jobs
return;
}
var seriesInDb = _seriesProvider.GetAllSeries();
var seriesInDb = _seriesProvider.All();
foreach (var series in seriesInDb.Where(s => !String.IsNullOrEmpty(s.BannerUrl)))
{