uHttpSharp
uHttpSharp copied to clipboard
Fixed nested usage for HttpRouter handler
This change fixes HttpRouter to pick correct value from context.Request.RequestParameters when there are multiple nested routers for subpath resolution like this:
server.Use(new HttpRouter()
.With("main", new HttpRouter()
.With("somepath", new SomePathHandler())
)
);