mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-20 21:43:33 -07:00
Fixed: Assume SABnzbd develop version is 3.0.0 if not specified
(cherry picked from commit 77412f23766e8bb553e83d87f1e599e795a67f8b)
This commit is contained in:
parent
c43c824f15
commit
26c8259566
1 changed files with 3 additions and 3 deletions
|
@ -340,8 +340,8 @@ namespace NzbDrone.Core.Download.Clients.Sabnzbd
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
major = 1;
|
major = 3;
|
||||||
minor = 1;
|
minor = 0;
|
||||||
patch = 0;
|
patch = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -362,7 +362,7 @@ namespace NzbDrone.Core.Download.Clients.Sabnzbd
|
||||||
|
|
||||||
if (rawVersion.Equals("develop", StringComparison.InvariantCultureIgnoreCase))
|
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,
|
IsWarning = true,
|
||||||
DetailedDescription = "Lidarr may not be able to support new features added to SABnzbd when running develop versions."
|
DetailedDescription = "Lidarr may not be able to support new features added to SABnzbd when running develop versions."
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue