1
0
mirror of https://github.com/imgproxy/imgproxy.git synced 2025-10-30 23:08:02 +02:00

Fix typo in response header name (#693)

This commit is contained in:
Hampus Kraft
2021-09-06 11:47:10 +02:00
committed by GitHub
parent dbd19649a6
commit 8f062a43ee

View File

@@ -14,7 +14,7 @@ var landingTmpl = []byte(`
`)
func handleLanding(reqID string, rw http.ResponseWriter, r *http.Request) {
rw.Header().Set("Content-Tyle", "text/html")
rw.Header().Set("Content-Type", "text/html")
rw.WriteHeader(200)
rw.Write(landingTmpl)
}