From 2e5528542d532adb81b038cf14c0bae696fec03a Mon Sep 17 00:00:00 2001 From: hmhealey Date: Wed, 29 Jul 2015 10:21:31 -0400 Subject: Changed file API to not write response data on a HEAD request --- api/file.go | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'api/file.go') diff --git a/api/file.go b/api/file.go index 123cab457..219cf6103 100644 --- a/api/file.go +++ b/api/file.go @@ -261,7 +261,10 @@ func getFile(c *Context, w http.ResponseWriter, r *http.Request) { w.Header().Set("Cache-Control", "max-age=2592000, public") w.Header().Set("Content-Length", strconv.Itoa(len(f))) - w.Write(f) + + if r.Method != "HEAD" { + w.Write(f) + } } func asyncGetFile(path string, fileData chan []byte) { -- cgit v1.2.3-1-g7c22