Fix customerrorscheck success message as it expect only 1 token not 2

This commit is contained in:
Jeavon
2017-08-02 15:35:53 +01:00
parent 90e6815164
commit 3a13cd82ed

View File

@@ -49,7 +49,7 @@ namespace Umbraco.Web.HealthCheck.Checks.Config
get
{
return _textService.Localize("healthcheck/customErrorsCheckSuccessMessage",
new[] { CurrentValue, Values.First(v => v.IsRecommended).Value });
new[] { Values.First(v => v.IsRecommended).Value });
}
}