mirror of
https://github.com/Readarr/Readarr
synced 2025-12-17 22:03:05 +01: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 @@ public override HealthCheck Check()
|
|||
}
|
||||
|
||||
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");
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue