- dnsfilter: fix npe in dnsfilter test
This commit is contained in:
@@ -1038,7 +1038,7 @@ func New(c *Config) *Dnsfilter {
|
|||||||
TLSHandshakeTimeout: 10 * time.Second,
|
TLSHandshakeTimeout: 10 * time.Second,
|
||||||
ExpectContinueTimeout: 1 * time.Second,
|
ExpectContinueTimeout: 1 * time.Second,
|
||||||
}
|
}
|
||||||
if len(c.ResolverAddress) != 0 {
|
if c != nil && len(c.ResolverAddress) != 0 {
|
||||||
resolverAddr = c.ResolverAddress
|
resolverAddr = c.ResolverAddress
|
||||||
d.transport.DialContext = customDialContext
|
d.transport.DialContext = customDialContext
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user