Fixed: Assume SABnzbd develop version is 3.0.0 if not specified

Fixes #7093

(cherry picked from commit 77412f23766e8bb553e83d87f1e599e795a67f8b)
This commit is contained in:
bakerboy448 2022-02-22 15:19:49 -06:00 committed by Qstick
parent 8fd1f121f4
commit c015a3ebf0
1 changed files with 3 additions and 3 deletions

View File

@ -342,8 +342,8 @@ namespace NzbDrone.Core.Download.Clients.Sabnzbd
return null;
}
major = 1;
minor = 1;
major = 3;
minor = 0;
patch = 0;
}
@ -364,7 +364,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 = "Radarr may not be able to support new features added to SABnzbd when running develop versions."