1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2025-01-02 23:47:07 -05:00

fix matcher group

This commit is contained in:
Darien Raymond 2018-08-19 21:07:31 +02:00
parent edcf564dd7
commit e72d4d6c25
No known key found for this signature in database
GPG Key ID: 7251FFA14BB18169

View File

@ -89,6 +89,10 @@ func (g *MatcherGroup) Match(pattern string) uint32 {
return c
}
if c := g.domainMatcher.Match(pattern); c > 0 {
return c
}
for _, e := range g.otherMatchers {
if e.m.Match(pattern) {
return e.id