mirror of
https://github.com/MetaCubeX/mihomo.git
synced 2025-01-07 09:53:58 +08:00
Fix(url-test): incorrect result
This commit is contained in:
parent
159d9da548
commit
bd0b6a2e40
@ -106,12 +106,13 @@ func (u *URLTest) speedTest() {
|
||||
defer cancel()
|
||||
picker, ctx := picker.WithContext(ctx)
|
||||
for _, p := range u.proxies {
|
||||
proxy := p
|
||||
picker.Go(func() (interface{}, error) {
|
||||
_, err := p.URLTest(ctx, u.rawURL)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
t, err := proxy.URLTest(ctx, u.rawURL)
|
||||
if err != nil || t == 0 {
|
||||
return nil, errors.New("speed test error")
|
||||
}
|
||||
return p, nil
|
||||
return proxy, nil
|
||||
})
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user