Fixed an issue creating metadata for all series

This commit is contained in:
markus101 2012-07-27 07:32:57 -07:00
parent e5b6f63e6e
commit 1c99d602d8
1 changed files with 10 additions and 10 deletions

View File

@ -38,19 +38,19 @@ namespace NzbDrone.Core.Jobs
public void Start(ProgressNotification notification, int targetId, int secondaryTargetId) public void Start(ProgressNotification notification, int targetId, int secondaryTargetId)
{ {
List<Series> seriesToRefresh;
if (targetId <= 0) if (targetId <= 0)
{ seriesToRefresh = _seriesProvider.GetAllSeries().ToList();
var allSeries = _seriesProvider.GetAllSeries();
foreach(var s in allSeries) else
{ seriesToRefresh = new List<Series> { _seriesProvider.GetSeries(targetId) };
RefreshMetadata(notification, s);
}
}
var series = _seriesProvider.GetSeries(targetId); foreach(var series in seriesToRefresh)
{
RefreshMetadata(notification, series); RefreshMetadata(notification, series);
} }
}
private void RefreshMetadata(ProgressNotification notification, Series series) private void RefreshMetadata(ProgressNotification notification, Series series)
{ {