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

View file

@ -268,6 +268,13 @@ namespace NzbDrone.Core.Configuration
set { SetValue("AutoRedownloadFailed", value); }
}
public Boolean RemoveFailedDownloads
{
get { return GetValueBoolean("RemoveFailedDownloads", true); }
set { SetValue("RemoveFailedDownloads", value); }
}
public string DownloadClientWorkingFolders
{
get { return GetValue("DownloadClientWorkingFolders", "_UNPACK_|_FAILED_"); }