mirror of
https://github.com/Sonarr/Sonarr.git
synced 2025-01-04 06:38:28 +02:00
Fixed: Assume SABnzbd develop version is 3.0.0 if not specified
Fixes #4911
This commit is contained in:
parent
4bfcd0de1d
commit
77412f2376
@ -340,8 +340,8 @@ private Version ParseVersion(string version)
|
||||
return null;
|
||||
}
|
||||
|
||||
major = 1;
|
||||
minor = 1;
|
||||
major = 3;
|
||||
minor = 0;
|
||||
patch = 0;
|
||||
}
|
||||
|
||||
@ -362,7 +362,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 = "Sonarr may not be able to support new features added to SABnzbd when running develop versions."
|
||||
|
Loading…
Reference in New Issue
Block a user