diff --git a/src/NzbDrone.Core/Download/History/DownloadHistoryService.cs b/src/NzbDrone.Core/Download/History/DownloadHistoryService.cs index ce07124de..51d1a70cf 100644 --- a/src/NzbDrone.Core/Download/History/DownloadHistoryService.cs +++ b/src/NzbDrone.Core/Download/History/DownloadHistoryService.cs @@ -64,6 +64,11 @@ namespace NzbDrone.Core.Download.History // Events are ordered by date descending. We'll return the most recent expected event. foreach (var e in events) { + if (e.EventType == DownloadHistoryEventType.DownloadIgnored) + { + return e; + } + if (e.EventType == DownloadHistoryEventType.DownloadGrabbed) { return e;