From 61306e1ae4fc4c2cfda226f5d447de68714c081b Mon Sep 17 00:00:00 2001 From: Ralph Slooten Date: Sat, 8 Feb 2025 15:15:25 +1300 Subject: [PATCH] Ignore render errors --- server/apiv1/testing.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/apiv1/testing.go b/server/apiv1/testing.go index 418cd00..968bfc7 100644 --- a/server/apiv1/testing.go +++ b/server/apiv1/testing.go @@ -102,7 +102,7 @@ func GetMessageHTML(w http.ResponseWriter, r *http.Request) { }) b := bytes.Buffer{} - html.Render(&b, doc) + _ = html.Render(&b, doc) htmlStr = b.String() nonce := r.Header.Get("mp-nonce")