encode: Fix bug where default status code was being written

for small responses.

See https://caddy.community/t/v2-permanent-redirect-prompt/6190?u=matt
This commit is contained in:
Matthew Holt 2019-09-13 16:00:03 -06:00
parent 3b80c505fb
commit 46aaf02371
No known key found for this signature in database
GPG Key ID: 2A349DD577D586A5

View File

@ -162,9 +162,6 @@ func (rw *responseWriter) Write(p []byte) (int, error) {
if err != nil {
return 0, err
}
if rw.buf.Len() < rw.config.MinLength {
return len(p), nil
}
rw.init()
p = rw.buf.Bytes()
defer func() {