mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-24 22:35:39 -04:00
New: The History->Queue UI now show some elementary error information for failed imports.
This commit is contained in:
@@ -20,7 +20,7 @@ namespace NzbDrone.Core.Download
|
||||
TrackedDownload[] GetQueuedDownloads();
|
||||
}
|
||||
|
||||
public class DownloadTrackingService : IDownloadTrackingService, IExecute<CheckForFinishedDownloadCommand>, IHandle<ApplicationStartedEvent>, IHandle<EpisodeGrabbedEvent>
|
||||
public class DownloadTrackingService : IDownloadTrackingService, IExecute<CheckForFinishedDownloadCommand>, IHandleAsync<ApplicationStartedEvent>, IHandle<EpisodeGrabbedEvent>
|
||||
{
|
||||
private readonly IProvideDownloadClient _downloadClientProvider;
|
||||
private readonly IHistoryService _historyService;
|
||||
@@ -201,7 +201,7 @@ namespace NzbDrone.Core.Download
|
||||
ProcessTrackedDownloads();
|
||||
}
|
||||
|
||||
public void Handle(ApplicationStartedEvent message)
|
||||
public void HandleAsync(ApplicationStartedEvent message)
|
||||
{
|
||||
ProcessTrackedDownloads();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user