mirror of
https://github.com/astaxie/beego.git
synced 2024-11-22 13:30:56 +00:00
Update output.go
This commit is contained in:
parent
96387e9a9b
commit
f0d1d7149b
@ -67,8 +67,11 @@ func (output *BeegoOutput) Body(content []byte) error {
|
||||
}
|
||||
if b, n, _ := WriteBody(encoding, buf, content); b {
|
||||
output.Header("Content-Encoding", n)
|
||||
}
|
||||
output.Header("Content-Length", strconv.Itoa(len(content)))
|
||||
output.Header("Content-Length", strconv.Itoa(buf.Len()))
|
||||
} else {
|
||||
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"
|
||||
|
Loading…
Reference in New Issue
Block a user