1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-23 22:25:14 -04:00

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
@@ -16,6 +16,7 @@ namespace NzbDrone.Core.Configuration
string DownloadClientWorkingFolders { get; set; }
int DownloadedMoviesScanInterval { get; set; }
int DownloadClientHistoryLimit { get; set; }
int CheckForFinishedDownloadInterval { get; set; }
//Completed/Failed Download Handling (Download client)
bool EnableCompletedDownloadHandling { get; set; }