From 2d90abc3cbfe2a852bb2e2aae7a3dc91b17f9ea9 Mon Sep 17 00:00:00 2001
From: Simon Marsh <simon@burble.com>
Date: Fri, 27 Jan 2023 12:37:20 +0000
Subject: [PATCH] Fix go vet warning

---
 frontend/webserver.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/frontend/webserver.go b/frontend/webserver.go
index 46dc401..a771339 100644
--- a/frontend/webserver.go
+++ b/frontend/webserver.go
@@ -90,7 +90,7 @@ func webBackendCommunicator(endpoint string, command string) func(w http.Respons
 
 		if (command == "generic") && !(urlCommands == "memory" || urlCommands == "status") {
 			renderPageTemplate(w, r, " - "+html.EscapeString(endpoint+" show "+urlCommands),
-				"<h2>'show "+urlCommands+"' not supported</h2>")
+				template.HTML("<h2>'show "+urlCommands+"' not supported</h2>"))
 			return
 		}