From 4aa8d8378bd7915489d7856357fb082bef318f8c Mon Sep 17 00:00:00 2001 From: Wim Brand Date: Mon, 8 Jan 2018 12:06:38 +0100 Subject: [PATCH] Typing error in Content-Type header --- webcontroller/style.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webcontroller/style.go b/webcontroller/style.go index dae5ec7..6b01698 100644 --- a/webcontroller/style.go +++ b/webcontroller/style.go @@ -9,7 +9,7 @@ import ( ) func GlobalCSSHandler(w http.ResponseWriter, r *http.Request, _ httprouter.Params) { - w.Header().Add("COntent-Type", "text/css; charset=utf-8") + w.Header().Add("Content-Type", "text/css; charset=utf-8") var textColor = "c0c0c0"