remember to add leading '/' to full request string!

Signed-off-by: kim (grufwub) <grufwub@gmail.com>
development
kim (grufwub) 4 years ago
parent f23b452cb9
commit 216d2df070

@ -8,7 +8,7 @@ type Request struct {
// String returns the full parsed request string (mainly for logging)
func (r *Request) String() string {
return r.p.Relative() + "?" + r.params
return "/" + r.p.Relative() + "?" + r.params
}
// Path returns the requests associate Path object

Loading…
Cancel
Save