New: Allow CheckForFinishedDownloadInterval to be set from the UI (#3233)

* Adding CheckForFinishedDownloadInterval to config service
Changed TaskManager to use a configurable interval for CheckForFinishedDownloadCommand

* Adding new CheckForFinishedDownloadInterval to UI

Fixes #840
This commit is contained in:
Steven Crouchman
2019-05-02 11:51:21 +01:00
committed by Leonardo Galli
parent 9985554dcb
commit f411903e90
5 changed files with 33 additions and 3 deletions

View File

@@ -273,6 +273,13 @@ namespace NzbDrone.Core.Configuration
set { SetValue("DownloadedMoviesScanInterval", value); }
}
public int CheckForFinishedDownloadInterval
{
get { return GetValueInt("CheckForFinishedDownloadInterval", 1); }
set { SetValue("CheckForFinishedDownloadInterval", value); }
}
public int DownloadClientHistoryLimit
{
get { return GetValueInt("DownloadClientHistoryLimit", 30); }