diff --git a/V2rayNG/app/src/main/kotlin/com/v2ray/ang/service/V2RayServiceManager.kt b/V2rayNG/app/src/main/kotlin/com/v2ray/ang/service/V2RayServiceManager.kt index 08cab75c..5a00685c 100644 --- a/V2rayNG/app/src/main/kotlin/com/v2ray/ang/service/V2RayServiceManager.kt +++ b/V2rayNG/app/src/main/kotlin/com/v2ray/ang/service/V2RayServiceManager.kt @@ -368,7 +368,7 @@ object V2RayServiceManager { } val directUplink = v2rayPoint.queryStats(TAG_DIRECT, "uplink") val directDownlink = v2rayPoint.queryStats(TAG_DIRECT, "downlink") - val zeroSpeed = (proxyTotal == 0L && directUplink == 0L && directDownlink == 0L) + val zeroSpeed = proxyTotal == 0L && directUplink == 0L && directDownlink == 0L if (!zeroSpeed || !lastZeroSpeed) { if (proxyTotal == 0L) { appendSpeedString(text, outboundTags?.firstOrNull(), 0.0, 0.0)