From 484b5d2a49e13b70348d977e8c5737c516b18580 Mon Sep 17 00:00:00 2001 From: Gabe Kangas Date: Wed, 18 Jan 2023 22:45:16 -0800 Subject: [PATCH] Fix lint warning --- controllers/customJavascript.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/controllers/customJavascript.go b/controllers/customJavascript.go index cdacfe76a..f20dfdf25 100644 --- a/controllers/customJavascript.go +++ b/controllers/customJavascript.go @@ -9,5 +9,5 @@ import ( // ServeCustomJavascript will serve optional custom Javascript. func ServeCustomJavascript(w http.ResponseWriter, r *http.Request) { js := data.GetCustomJavascript() - w.Write([]byte(js)) + _, _ = w.Write([]byte(js)) }