diff options
author | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2022-09-09 15:49:35 +0100 |
---|---|---|
committer | Andrey Lihatskiy <alihatskiy@productengine.com> | 2022-09-09 18:04:39 +0300 |
commit | 281ebb322e2e3d40bc35a7177542ad55a515faa2 (patch) | |
tree | ae8c330021a8e589207dcb461cff017334f61800 | |
parent | 0a6c317f113ea53bf509d15fb39187f916705e88 (diff) |
Sl-18124 - fixed establish_time stat
-rw-r--r-- | indra/newview/llvoicevivox.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llvoicevivox.cpp b/indra/newview/llvoicevivox.cpp index c3115e2b45..40f59cf762 100644 --- a/indra/newview/llvoicevivox.cpp +++ b/indra/newview/llvoicevivox.cpp @@ -1243,8 +1243,8 @@ bool LLVivoxVoiceClient::establishVoiceConnection() if (result.has("connector")) { - LLVoiceVivoxStats::getInstance()->establishAttemptEnd(connected); connected = LLSD::Boolean(result["connector"]); + LLVoiceVivoxStats::getInstance()->establishAttemptEnd(connected); if (!connected) { if (result.has("retry") && ++retries <= CONNECT_RETRY_MAX && !sShuttingDown) |