Browse Source

Routing: Fix regexp syntax support in UserMatcher (#3900)

pull/3816/head^2
vnxme 1 month ago committed by GitHub
parent
commit
5164a82185
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      app/router/condition.go

2
app/router/condition.go

@ -202,7 +202,7 @@ func NewUserMatcher(users []string) *UserMatcher {
for _, user := range users {
if len(user) > 0 {
if len(user) > 7 && strings.HasPrefix(user, "regexp:") {
if re, err := regexp.Compile(user[7:]); err != nil {
if re, err := regexp.Compile(user[7:]); err == nil {
patternsCopy = append(patternsCopy, re)
}
// Items of users slice with an invalid regexp syntax are ignored.

Loading…
Cancel
Save