From b1f6ff8871dbeaaca0552ad2d6acbc149c16c23d Mon Sep 17 00:00:00 2001 From: Delyan Angelov Date: Sun, 20 Dec 2020 11:59:38 +0200 Subject: [PATCH] ci: fix failing vweb_routing_checks.vv --- vlib/vweb/vweb.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vlib/vweb/vweb.v b/vlib/vweb/vweb.v index 73112fd7c3..ba176c5835 100644 --- a/vlib/vweb/vweb.v +++ b/vlib/vweb/vweb.v @@ -480,7 +480,7 @@ fn handle_conn(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{} }