diff --git a/app/router/strategy_leastping.go b/app/router/strategy_leastping.go index cc0139547..85c2d19e1 100644 --- a/app/router/strategy_leastping.go +++ b/app/router/strategy_leastping.go @@ -41,6 +41,7 @@ func (l *LeastPingStrategy) PickOutbound(strings []string) string { for _, v := range status { if outboundsList.contains(v.OutboundTag) && v.Alive && v.Delay < leastPing { selectedOutboundName = v.OutboundTag + leastPing = v.Delay } } return selectedOutboundName