Skip to content

Commit

Permalink
Merge 567fd30 into 28db72d
Browse files Browse the repository at this point in the history
  • Loading branch information
GilbertGeliba committed Jul 16, 2018
2 parents 28db72d + 567fd30 commit 6e79a3e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion router.go
Expand Up @@ -293,7 +293,7 @@ func (r *Router) Handler(ctx *fasthttp.RequestCtx) {
defer r.recv(ctx)
}

path := string(ctx.Path())
path := string(ctx.URI().PathOriginal())
method := string(ctx.Method())
if root := r.trees[method]; root != nil {
if f, tsr := root.getValue(path, ctx); f != nil {
Expand Down

0 comments on commit 6e79a3e

Please sign in to comment.