Fixed: Make fpcalc version check strict again now lsio updated

This commit is contained in:
Tom Andrews 2019-03-10 22:55:13 +00:00
parent 68b8ccc826
commit 1c63b04eb3
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ namespace NzbDrone.Core.HealthCheck.Checks
}
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");
}