mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-21 05:53:33 -07:00
Merge with Kayone's branch.
This commit is contained in:
parent
8aad53f291
commit
7e44ee5020
8 changed files with 102 additions and 63 deletions
|
@ -40,7 +40,7 @@ namespace NzbDrone.Core.Providers.Jobs
|
|||
seriesToScan = new List<Series>() { _seriesProvider.GetSeries(targetId) };
|
||||
}
|
||||
|
||||
foreach (var series in seriesToScan)
|
||||
foreach (var series in seriesToScan.Where(c => c.LastInfoSync != null))
|
||||
{
|
||||
notification.CurrentMessage = string.Format("Scanning disk for '{0}'", series.Title);
|
||||
_mediaFileProvider.Scan(series);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue