Fix lint warning

This commit is contained in:
Gabe Kangas 2023-01-18 22:45:16 -08:00
parent fdcd2863d6
commit 484b5d2a49
No known key found for this signature in database
GPG key ID: 4345B2060657F330

View file

@ -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))
}