mirror of
https://github.com/MetaCubeX/Clash.Meta.git
synced 2025-04-05 14:13:30 +03:00
Fix: incorrect mutex in speedTest (#153)
This commit is contained in:
parent
18f885a92a
commit
531f487629
1 changed files with 1 additions and 1 deletions
|
@ -92,7 +92,7 @@ func (u *URLTest) fallback() {
|
|||
}
|
||||
|
||||
func (u *URLTest) speedTest() {
|
||||
if atomic.CompareAndSwapInt32(&u.once, 0, 1) {
|
||||
if !atomic.CompareAndSwapInt32(&u.once, 0, 1) {
|
||||
return
|
||||
}
|
||||
defer atomic.StoreInt32(&u.once, 0)
|
||||
|
|
Loading…
Add table
Reference in a new issue