mirror of
https://github.com/astaxie/beego.git
synced 2024-11-22 14:30:56 +00:00
fix the regexps bugs
This commit is contained in:
parent
b5a2347e1d
commit
8ed6d06572
4
tree.go
4
tree.go
@ -106,7 +106,11 @@ func filterTreeWithPrefix(t *Tree, wildcards []string, reg string) {
|
||||
filterCards = append(filterCards, v)
|
||||
}
|
||||
l.wildcards = filterCards
|
||||
if l.regexps != nil {
|
||||
l.regexps = regexp.MustCompile("^" + reg + strings.Trim(l.regexps.String(), "^$") + "$")
|
||||
} else {
|
||||
l.regexps = regexp.MustCompile("^" + reg + "$")
|
||||
}
|
||||
} else {
|
||||
if l.regexps != nil {
|
||||
filterCards := []string{}
|
||||
|
Loading…
Reference in New Issue
Block a user