From 8b2550cef0381a07c466044063c9d8c2be4d89c3 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 --- 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 aae622625..9a74663f0 100644 --- a/src/NzbDrone.Core/Configuration/ConfigService.cs +++ b/src/NzbDrone.Core/Configuration/ConfigService.cs @@ -184,7 +184,7 @@ namespace NzbDrone.Core.Configuration public int DownloadClientHistoryLimit { - get { return GetValueInt("DownloadClientHistoryLimit", 30); } + get { return GetValueInt("DownloadClientHistoryLimit", 60); } set { SetValue("DownloadClientHistoryLimit", value); } }