mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
autofree: handle SelectorExpr and fix json
This commit is contained in:
@@ -350,7 +350,9 @@ fn handle_conn<T>(conn net.Socket, mut app T) {
|
||||
//t := time.ticks()
|
||||
//mut action := ''
|
||||
mut route_words_a := [][]string{}
|
||||
mut url_words := vals[1][1..].split('/').filter(it != '')
|
||||
//mut url_words := vals[1][1..].split('/').filter(it != '')
|
||||
x := vals[1][1..].split('/')
|
||||
mut url_words := x.filter(it != '')
|
||||
|
||||
|
||||
if url_words.len == 0 {
|
||||
|
||||
Reference in New Issue
Block a user