diff --git a/vlib/vweb/vweb.v b/vlib/vweb/vweb.v index fdc3fc1108..9e41f0aee9 100644 --- a/vlib/vweb/vweb.v +++ b/vlib/vweb/vweb.v @@ -280,7 +280,7 @@ fn handle_conn(conn net.Socket, mut app T) { //println('GOT CL=$len') } } else { - body += line + body += line.trim_left('\r\n') if body.len >= len { break }