mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-15 09:33:52 -07:00
Failed downloads are removed from queue/history (opt out)
This commit is contained in:
parent
769fcdfc80
commit
d634dd1e5c
10 changed files with 174 additions and 28 deletions
|
@ -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_"); }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue