Redownload after failure is an advanced option.

New: Handle failed downloads and attempt to find another release (SABnzbd only)
This commit is contained in:
Mark McDowall 2013-10-24 15:12:39 -07:00
parent f99573e334
commit 6dd2951f80
4 changed files with 38 additions and 1 deletions

View file

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