mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-20 21:54:25 -04:00
New: Rebuilt Completed/Failed download handling from scratch
This commit is contained in:
@@ -124,7 +124,7 @@ namespace NzbDrone.Core.Configuration
|
||||
|
||||
public Boolean EnableCompletedDownloadHandling
|
||||
{
|
||||
get { return GetValueBoolean("EnableCompletedDownloadHandling", false); }
|
||||
get { return GetValueBoolean("EnableCompletedDownloadHandling", true); }
|
||||
|
||||
set { SetValue("EnableCompletedDownloadHandling", value); }
|
||||
}
|
||||
@@ -136,13 +136,6 @@ namespace NzbDrone.Core.Configuration
|
||||
set { SetValue("RemoveCompletedDownloads", value); }
|
||||
}
|
||||
|
||||
public Boolean EnableFailedDownloadHandling
|
||||
{
|
||||
get { return GetValueBoolean("EnableFailedDownloadHandling", true); }
|
||||
|
||||
set { SetValue("EnableFailedDownloadHandling", value); }
|
||||
}
|
||||
|
||||
public Boolean AutoRedownloadFailed
|
||||
{
|
||||
get { return GetValueBoolean("AutoRedownloadFailed", true); }
|
||||
@@ -157,27 +150,6 @@ namespace NzbDrone.Core.Configuration
|
||||
set { SetValue("RemoveFailedDownloads", value); }
|
||||
}
|
||||
|
||||
public Int32 BlacklistGracePeriod
|
||||
{
|
||||
get { return GetValueInt("BlacklistGracePeriod", 2); }
|
||||
|
||||
set { SetValue("BlacklistGracePeriod", value); }
|
||||
}
|
||||
|
||||
public Int32 BlacklistRetryInterval
|
||||
{
|
||||
get { return GetValueInt("BlacklistRetryInterval", 60); }
|
||||
|
||||
set { SetValue("BlacklistRetryInterval", value); }
|
||||
}
|
||||
|
||||
public Int32 BlacklistRetryLimit
|
||||
{
|
||||
get { return GetValueInt("BlacklistRetryLimit", 1); }
|
||||
|
||||
set { SetValue("BlacklistRetryLimit", value); }
|
||||
}
|
||||
|
||||
public Boolean CreateEmptySeriesFolders
|
||||
{
|
||||
get { return GetValueBoolean("CreateEmptySeriesFolders", false); }
|
||||
|
||||
Reference in New Issue
Block a user