parent
70e6ace870
commit
53e581f6e3
1 changed files with 2 additions and 1 deletions
|
@ -37,8 +37,9 @@ proc onRequest(req: Request): Future[void] =
|
|||
let
|
||||
rawPath = get req.path
|
||||
uri = parseUrl rawPath
|
||||
reqPath = uri.paths.nonEmpty
|
||||
reqPath = rawPath.split("?")[0].split("/").nonEmpty
|
||||
redirCode = getHttpCode uri.query
|
||||
echo reqPath
|
||||
|
||||
if reqPath.len == 0:
|
||||
req.send index
|
||||
|
|
Loading…
Reference in a new issue