mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-16 10:03:51 -07:00
Fixed performance issues with the QueueModule and limited the number of items the Download Client will fetch as history.
This commit is contained in:
parent
c6e33bc463
commit
1b96a43037
9 changed files with 37 additions and 15 deletions
|
@ -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); }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue