chore: ran v fmt
parent
20874bfb0b
commit
2dcee45406
8
docker.v
8
docker.v
|
@ -115,10 +115,10 @@ fn (mut d DockerConn) read_response_body(length int) !string {
|
||||||
fn (mut d DockerConn) read_response() !(http.Response, string) {
|
fn (mut d DockerConn) read_response() !(http.Response, string) {
|
||||||
head := d.read_response_head()!
|
head := d.read_response_head()!
|
||||||
|
|
||||||
// 204 means "No Content", so we can assume nothing follows after this
|
// 204 means "No Content", so we can assume nothing follows after this
|
||||||
if head.status_code == 204 {
|
if head.status_code == 204 {
|
||||||
return head, ''
|
return head, ''
|
||||||
}
|
}
|
||||||
|
|
||||||
if head.header.get(http.CommonHeader.transfer_encoding) or { '' } == 'chunked' {
|
if head.header.get(http.CommonHeader.transfer_encoding) or { '' } == 'chunked' {
|
||||||
mut builder := strings.new_builder(1024)
|
mut builder := strings.new_builder(1024)
|
||||||
|
|
Loading…
Reference in New Issue