mirror of
https://github.com/MetaCubeX/mihomo.git
synced 2024-11-16 19:56:51 +08:00
Fix: skip deleted node from url-test group (#1378)
Co-authored-by: fish <fish@youme.im>
This commit is contained in:
parent
fe7655ea76
commit
79fe0273f6
|
@ -69,7 +69,13 @@ func (u *URLTest) fast(touch bool) C.Proxy {
|
|||
proxies := u.proxies(touch)
|
||||
fast := proxies[0]
|
||||
min := fast.LastDelay()
|
||||
fastNotExist := true
|
||||
|
||||
for _, proxy := range proxies[1:] {
|
||||
if u.fastNode != nil && proxy.Name() == u.fastNode.Name() {
|
||||
fastNotExist = false
|
||||
}
|
||||
|
||||
if !proxy.Alive() {
|
||||
continue
|
||||
}
|
||||
|
@ -82,7 +88,7 @@ func (u *URLTest) fast(touch bool) C.Proxy {
|
|||
}
|
||||
|
||||
// tolerance
|
||||
if u.fastNode == nil || !u.fastNode.Alive() || u.fastNode.LastDelay() > fast.LastDelay()+u.tolerance {
|
||||
if u.fastNode == nil || fastNotExist || !u.fastNode.Alive() || u.fastNode.LastDelay() > fast.LastDelay()+u.tolerance {
|
||||
u.fastNode = fast
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user