From 724125a154659cb669601c5bd8ef01c17b65ca84 Mon Sep 17 00:00:00 2001 From: Taloth Saldono Date: Sat, 14 Nov 2020 00:00:29 +0100 Subject: [PATCH] Bumped Sabnzbd default history request size from 30 to 60 (cherry picked from commit 8b2550cef0381a07c466044063c9d8c2be4d89c3) --- src/NzbDrone.Core/Configuration/ConfigService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NzbDrone.Core/Configuration/ConfigService.cs b/src/NzbDrone.Core/Configuration/ConfigService.cs index 7e79f1ec9..9cb64f62b 100644 --- a/src/NzbDrone.Core/Configuration/ConfigService.cs +++ b/src/NzbDrone.Core/Configuration/ConfigService.cs @@ -187,7 +187,7 @@ namespace NzbDrone.Core.Configuration public int DownloadClientHistoryLimit { - get { return GetValueInt("DownloadClientHistoryLimit", 30); } + get { return GetValueInt("DownloadClientHistoryLimit", 60); } set { SetValue("DownloadClientHistoryLimit", value); } }