From c015a3ebf0b6b64b686e4f968eede34fde66ff8f Mon Sep 17 00:00:00 2001 From: bakerboy448 <55419169+bakerboy448@users.noreply.github.com> Date: Tue, 22 Feb 2022 15:19:49 -0600 Subject: [PATCH] Fixed: Assume SABnzbd develop version is 3.0.0 if not specified Fixes #7093 (cherry picked from commit 77412f23766e8bb553e83d87f1e599e795a67f8b) --- src/NzbDrone.Core/Download/Clients/Sabnzbd/Sabnzbd.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/NzbDrone.Core/Download/Clients/Sabnzbd/Sabnzbd.cs b/src/NzbDrone.Core/Download/Clients/Sabnzbd/Sabnzbd.cs index 7123a8911..871dacb3b 100644 --- a/src/NzbDrone.Core/Download/Clients/Sabnzbd/Sabnzbd.cs +++ b/src/NzbDrone.Core/Download/Clients/Sabnzbd/Sabnzbd.cs @@ -342,8 +342,8 @@ private Version ParseVersion(string version) return null; } - major = 1; - minor = 1; + major = 3; + minor = 0; patch = 0; } @@ -364,7 +364,7 @@ private ValidationFailure TestConnectionAndVersion() if (rawVersion.Equals("develop", StringComparison.InvariantCultureIgnoreCase)) { - return new NzbDroneValidationFailure("Version", "SABnzbd develop version, assuming version 1.1.0 or higher.") + return new NzbDroneValidationFailure("Version", "SABnzbd develop version, assuming version 3.0.0 or higher.") { IsWarning = true, DetailedDescription = "Radarr may not be able to support new features added to SABnzbd when running develop versions."