mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-16 10:03:51 -07:00
Fixed: Make fpcalc version check strict again now lsio updated
This commit is contained in:
parent
68b8ccc826
commit
1c63b04eb3
1 changed files with 1 additions and 1 deletions
|
@ -32,7 +32,7 @@ namespace NzbDrone.Core.HealthCheck.Checks
|
||||||
}
|
}
|
||||||
|
|
||||||
var fpcalcVersion = _fingerprintingService.FpcalcVersion();
|
var fpcalcVersion = _fingerprintingService.FpcalcVersion();
|
||||||
if (fpcalcVersion == null || fpcalcVersion < new Version("1.2.0"))
|
if (fpcalcVersion == null || fpcalcVersion < new Version("1.4.3"))
|
||||||
{
|
{
|
||||||
return new HealthCheck(GetType(), HealthCheckResult.Warning, $"You have an old version of fpcalc. Please upgrade to 1.4.3.", "#fpcalc-upgrade");
|
return new HealthCheck(GetType(), HealthCheckResult.Warning, $"You have an old version of fpcalc. Please upgrade to 1.4.3.", "#fpcalc-upgrade");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue