Fixed: Albums removed from queue re-appearing on refresh

Fixes #1392
pull/2833/head
Qstick 2 years ago
parent 44b76ff647
commit 39bbb67f0a

@ -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;

Loading…
Cancel
Save