Fixed performance issues with the QueueModule and limited the number of items the Download Client will fetch as history.

This commit is contained in:
Taloth Saldono 2014-05-27 23:04:13 +02:00
parent c6e33bc463
commit 1b96a43037
9 changed files with 37 additions and 15 deletions

View file

@ -205,6 +205,13 @@ namespace NzbDrone.Core.Configuration
set { SetValue("DownloadedEpisodesScanInterval", value); }
}
public Int32 DownloadClientHistoryLimit
{
get { return GetValueInt("DownloadClientHistoryLimit", 30); }
set { SetValue("DownloadClientHistoryLimit", value); }
}
public Boolean SkipFreeSpaceCheckWhenImporting
{
get { return GetValueBoolean("SkipFreeSpaceCheckWhenImporting", false); }