diff --git a/vlib/vweb/vweb.v b/vlib/vweb/vweb.v index 004433ed04..46b8ccb612 100644 --- a/vlib/vweb/vweb.v +++ b/vlib/vweb/vweb.v @@ -359,7 +359,7 @@ fn handle_conn(mut conn net.TcpConn, mut app T) { } // Serve a static file if it is one // TODO: get the real path - url := urllib.parse(app.req.url.to_lower()) or { + url := urllib.parse(app.req.url) or { eprintln('error parsing path: $err') return }