diff options
-rw-r--r-- | svc/handlers.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/svc/handlers.go b/svc/handlers.go index 73ef869..38c8bfa 100644 --- a/svc/handlers.go +++ b/svc/handlers.go @@ -21,12 +21,12 @@ func sendStaticEtag(w http.ResponseWriter, isCSS bool) { if isCSS { etag := getEtag(staticCache.cssMod) w.Header().Set("ETag", "\""+etag+"\"") - w.Header().Set("Content-Time", cssutf8) + w.Header().Set("Content-Type", cssutf8) return } etag := getEtag(staticCache.indexMod) w.Header().Set("ETag", "\""+etag+"\"") - w.Header().Set("Content-Time", htmlutf8) + w.Header().Set("Content-Type", htmlutf8) } // handles "/" and "/css" |