mirror of
https://github.com/MetaCubeX/Clash.Meta.git
synced 2025-04-04 21:53:37 +03:00
fix: atomic.TypedValue panic
This commit is contained in:
parent
4542fc0991
commit
72d0948224
1 changed files with 1 additions and 1 deletions
|
@ -43,7 +43,7 @@ func (t *TypedValue[T]) Swap(new T) T {
|
|||
if old == nil {
|
||||
return DefaultValue[T]()
|
||||
}
|
||||
return old.(T)
|
||||
return old.(tValue[T]).value
|
||||
}
|
||||
|
||||
func (t *TypedValue[T]) CompareAndSwap(old, new T) bool {
|
||||
|
|
Loading…
Add table
Reference in a new issue