mirror of
https://github.com/Prowlarr/Prowlarr
synced 2025-12-09 10:02:54 +01:00
Fixed: Outdated Definition Healthcheck not using Definition Name
This commit is contained in:
parent
cb2e5953d5
commit
dbf81a7c9e
1 changed files with 1 additions and 1 deletions
|
|
@ -38,7 +38,7 @@ public override HealthCheck Check()
|
|||
return new HealthCheck(GetType(),
|
||||
HealthCheckResult.Warning,
|
||||
string.Format(_localizationService.GetLocalizedString("IndexerObsoleteCheckMessage"),
|
||||
string.Join(", ", oldIndexers.Select(v => v.Name))),
|
||||
string.Join(", ", oldIndexers.Select(v => v.Definition.Name))),
|
||||
"#indexers-are-obsolete");
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue