Failed downloads are removed from queue/history (opt out)

This commit is contained in:
Mark McDowall
2013-10-24 22:55:32 -07:00
parent 769fcdfc80
commit d634dd1e5c
10 changed files with 174 additions and 28 deletions
@@ -9,5 +9,7 @@ namespace NzbDrone.Core.Download
bool IsConfigured { get; }
IEnumerable<QueueItem> GetQueue();
IEnumerable<HistoryItem> GetHistory(int start = 0, int limit = 0);
void RemoveFromQueue(string id);
void RemoveFromHistory(string id);
}
}