1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-12-22 01:57:12 -05:00

fix a bug in fieldrule

This commit is contained in:
v2ray 2015-12-12 17:15:29 +01:00
parent fed5697dc3
commit b87cc5baf1

View File

@ -57,7 +57,7 @@ func NewPlainDomainMatcher(pattern string) *PlainDomainMatcher {
}
func (this *PlainDomainMatcher) Match(domain string) bool {
return strings.Contains(this.pattern, strings.ToLower(domain))
return strings.Contains(strings.ToLower(domain), this.pattern)
}
type RegexpDomainMatcher struct {