mirror of https://github.com/gin-gonic/gin.git
parent
80152ac82c
commit
c25254f563
7
gin.go
7
gin.go
|
@ -316,14 +316,11 @@ func (engine *Engine) HandleContext(c *Context) {
|
|||
|
||||
func (engine *Engine) handleHTTPRequest(context *Context) {
|
||||
httpMethod := context.Request.Method
|
||||
var path string
|
||||
var unescape bool
|
||||
path := context.Request.URL.Path
|
||||
unescape := false
|
||||
if engine.UseRawPath && len(context.Request.URL.RawPath) > 0 {
|
||||
path = context.Request.URL.RawPath
|
||||
unescape = engine.UnescapePathValues
|
||||
} else {
|
||||
path = context.Request.URL.Path
|
||||
unescape = false
|
||||
}
|
||||
|
||||
// Find root of the tree for the given HTTP method
|
||||
|
|
Loading…
Reference in New Issue