From a033ec077fad710f4158d5afed63a1379c5f50c8 Mon Sep 17 00:00:00 2001 From: Tobias Gesellchen Date: Sun, 28 Jun 2026 11:51:47 +0200 Subject: [PATCH] fix(health): reword sources_xml_diff title to an expectation (refs #493) The check title asserted "Speaker /sources matches service Sources.xml", but the row renders as a warning when they differ, so "matches" plus a warning read as a contradiction (reported in #493). Reword to "should match" so the title states the expectation; the per-finding messages and severities already convey whether it holds and what the differences are. Co-Authored-By: Claude Opus 4.8 (1M context) --- pkg/service/health/checks_sources_diff.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/service/health/checks_sources_diff.go b/pkg/service/health/checks_sources_diff.go index 0e0f1af..905de29 100644 --- a/pkg/service/health/checks_sources_diff.go +++ b/pkg/service/health/checks_sources_diff.go @@ -41,7 +41,7 @@ type speakerSourcesXML struct { func RegisterSourcesXMLDiff(r *Registry, ds *datastore.DataStore) { r.Register(Check{ ID: CheckIDSourcesXMLDiff, - Title: "Speaker /sources matches service Sources.xml", + Title: "Speaker /sources should match service Sources.xml", Run: func() []Finding { return runSourcesXMLDiff(ds) },