diff options
author | Oz Linden <oz@lindenlab.com> | 2017-03-09 18:32:45 -0500 |
---|---|---|
committer | Oz Linden <oz@lindenlab.com> | 2017-03-09 18:32:45 -0500 |
commit | df331ef3c397fdcff3f3674870c4980eaffaada6 (patch) | |
tree | d2affdb3b5a14ca4b084ff27031410e2ae165ee6 /indra/newview/llvoicevivox.cpp | |
parent | dd63291355a09411a2242d7ef84d49eece8cb6e1 (diff) |
disambiguate LLSD type for retry value
Diffstat (limited to 'indra/newview/llvoicevivox.cpp')
-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 b33aa73df9..5b064e74f6 100644 --- a/indra/newview/llvoicevivox.cpp +++ b/indra/newview/llvoicevivox.cpp @@ -969,7 +969,7 @@ bool LLVivoxVoiceClient::establishVoiceConnection() { if (result.has("retry") && ++retries <= CONNECT_RETRY_MAX) { - F32 timeout = result["retry"]; + F32 timeout = LLSD::Real(result["retry"]); timeout *= retries; LL_INFOS("Voice") << "Retry Connection.Create in " << timeout << " seconds" << LL_ENDL; llcoro::suspendUntilTimeout(timeout); |