mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-30 05:45:31 +02:00
JobProvider now fully works based on a queuing logic, which allows more than one job to be queued. (EasyButton included!)
This commit is contained in:
@@ -42,9 +42,9 @@ namespace NzbDrone.Core.Providers.Jobs
|
||||
|
||||
foreach (var series in seriesToScan)
|
||||
{
|
||||
notification.CurrentMessage = "Scanning for files: " + series.Title;
|
||||
notification.CurrentMessage = string.Format("Scanning disk for '{0}'", series.Title);
|
||||
_mediaFileProvider.Scan(series);
|
||||
notification.CurrentMessage = "Media File Scan completed for " + series.Title;
|
||||
notification.CurrentMessage = string.Format("Media File Scan completed for '{0}'", series.Title);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user