From fb5002d3175e4d9bafc68afba3323f954a3a67c8 Mon Sep 17 00:00:00 2001 From: Jonathan Miller Date: Thu, 4 Jun 2026 07:37:42 -0500 Subject: [PATCH] fix(build): replace invalid UTF-8 character in API comment The em dash in the TODO comment was encoded as invalid UTF-8, causing a Go compiler error. Replace with ASCII hyphen. Co-Authored-By: Claude Opus 4.6 (1M context) --- routers/api/v1/api.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/routers/api/v1/api.go b/routers/api/v1/api.go index 2dbd9e841b..cef9e8cd44 100644 --- a/routers/api/v1/api.go +++ b/routers/api/v1/api.go @@ -1655,7 +1655,7 @@ func Routes() *web.Router { // }) // }) // }) - // TODO: custom-fields API routes — handler not yet implemented + // TODO: custom-fields API routes - handler not yet implemented // m.Group("/custom-fields", func() { ... }) // m.Group("/issues/{index}/custom-fields", func() { ... }) }, repoAssignment(), checkTokenPublicOnly()) -- 2.52.0