diff --git a/vlib/vweb/vweb.v b/vlib/vweb/vweb.v index 8d2e656fdd..200e20b1be 100644 --- a/vlib/vweb/vweb.v +++ b/vlib/vweb/vweb.v @@ -192,7 +192,8 @@ pub fn run(app mut T, port int) { conn.write(HTTP_404) or {} } conn.close() or {} - app.reset() + reset := 'reset' + app.$reset() } }