1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

ci: fix failing vweb_routing_checks.vv

This commit is contained in:
Delyan Angelov 2020-12-20 11:59:38 +02:00
parent 742e5a91ac
commit b1f6ff8871

View File

@ -480,7 +480,7 @@ fn handle_conn<T>(mut conn net.TcpConn, mut app T) {
} else if matching && unknown {
// router words with paramter like `/:test/site`
action = method.name
vars = variables
vars = variables.clone()
}
req_method = []string{}
}