EnableGZip=true,then content-length header missing

This results in responses with Content-Type as gzip as opposed to original content type.
This affects ServeJSON() function.
This commit is contained in:
kbynd 2016-12-31 16:04:34 +05:30 committed by GitHub
parent 90999717dd
commit 96387e9a9b
1 changed files with 3 additions and 3 deletions

View File

@ -67,9 +67,9 @@ func (output *BeegoOutput) Body(content []byte) error {
}
if b, n, _ := WriteBody(encoding, buf, content); b {
output.Header("Content-Encoding", n)
} else {
output.Header("Content-Length", strconv.Itoa(len(content)))
}
}
output.Header("Content-Length", strconv.Itoa(len(content)))
// Write status code if it has been set manually
// Set it to 0 afterwards to prevent "multiple response.WriteHeader calls"
if output.Status != 0 {