mirror of
https://github.com/astaxie/beego.git
synced 2024-11-22 01:20:55 +00:00
fix previer bug
This commit is contained in:
parent
3f076f4ca0
commit
4d4096c7e4
@ -158,7 +158,7 @@ func (p *ControllerRegistor) ServeHTTP(rw http.ResponseWriter, r *http.Request)
|
||||
}
|
||||
|
||||
if (requestPath[n-1] != '/' && route.pattern == requestPath) ||
|
||||
(len(route.pattern) >= n && requestPath[0:n-1] == route.pattern) {
|
||||
(len(route.pattern) >= n-1 && requestPath[0:n-1] == route.pattern) {
|
||||
runrouter = route
|
||||
findrouter = true
|
||||
break
|
||||
|
Loading…
Reference in New Issue
Block a user