From f1b7f5b3555f53a63b65d348111bf7764f1ef61c 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 e7a142da7..15066c55d 100644 --- a/src/NzbDrone.Core/Configuration/ConfigService.cs +++ b/src/NzbDrone.Core/Configuration/ConfigService.cs @@ -249,7 +249,7 @@ namespace NzbDrone.Core.Configuration public int DownloadClientHistoryLimit { - get { return GetValueInt("DownloadClientHistoryLimit", 30); } + get { return GetValueInt("DownloadClientHistoryLimit", 60); } set { SetValue("DownloadClientHistoryLimit", value); } }