Fixed: Movies removed from queue re-appearing on refresh

pull/4378/head
Mark McDowall 4 years ago committed by Qstick
parent 01e6fbddf4
commit e6479e9a53

@ -59,6 +59,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