diff --git a/makespec/BUILDVERSION b/makespec/BUILDVERSION index 467e82ce..e88369da 100644 --- a/makespec/BUILDVERSION +++ b/makespec/BUILDVERSION @@ -1 +1 @@ -5721 +5723 diff --git a/src/components/latency/LatencyTestThread.cpp b/src/components/latency/LatencyTestThread.cpp index 5f67c261..e4e2bd18 100644 --- a/src/components/latency/LatencyTestThread.cpp +++ b/src/components/latency/LatencyTestThread.cpp @@ -34,7 +34,9 @@ namespace Qv2ray::components::latency for (auto i = 0; i < count; i++) { resultData.totalCount++; - const auto [_latency, errMessage] = pingHelper.ping(host); + const auto value = pingHelper.ping(host); + const auto _latency = value.first; + const auto errMessage = value.second; if (!errMessage.isEmpty()) { resultData.errorMessage.append(NEWLINE + errMessage);