From 77412f23766e8bb553e83d87f1e599e795a67f8b 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 #4911 --- 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 c0f859ce8..8f8fbf5c0 100644 --- a/src/NzbDrone.Core/Download/Clients/Sabnzbd/Sabnzbd.cs +++ b/src/NzbDrone.Core/Download/Clients/Sabnzbd/Sabnzbd.cs @@ -340,8 +340,8 @@ namespace NzbDrone.Core.Download.Clients.Sabnzbd return null; } - major = 1; - minor = 1; + major = 3; + minor = 0; patch = 0; } @@ -362,7 +362,7 @@ namespace NzbDrone.Core.Download.Clients.Sabnzbd 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 = "Sonarr may not be able to support new features added to SABnzbd when running develop versions."