mirror of
https://gitclone.com/github.com/MetaCubeX/Clash.Meta
synced 2024-11-15 05:31:18 +08:00
Fix: don't auto health check on provider health check disabled
This commit is contained in:
parent
59bda1d547
commit
4323dd24d0
@ -142,7 +142,9 @@ func proxiesParse(buf []byte) (interface{}, error) {
|
||||
func (pp *proxySetProvider) setProxies(proxies []C.Proxy) {
|
||||
pp.proxies = proxies
|
||||
pp.healthCheck.setProxy(proxies)
|
||||
if pp.healthCheck.auto() {
|
||||
go pp.healthCheck.check()
|
||||
}
|
||||
}
|
||||
|
||||
func stopProxyProvider(pd *ProxySetProvider) {
|
||||
|
Loading…
Reference in New Issue
Block a user