diff options
author | Roxie Linden <roxie@lindenlab.com> | 2023-09-14 22:48:55 -0700 |
---|---|---|
committer | Roxie Linden <roxie@lindenlab.com> | 2024-02-22 23:11:34 -0800 |
commit | af2842793d2e5ce169cb5bced280bc227de01baa (patch) | |
tree | 31e5bd04b5fe24579804b6cd9f16eeaafcf024c4 /indra | |
parent | e0126bfe904ff2d26021a8fa227a75898562778a (diff) |
go ahead and restart voice negotiation when voice is re-enabled
Diffstat (limited to 'indra')
-rw-r--r-- | indra/newview/llvoicewebrtc.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llvoicewebrtc.cpp b/indra/newview/llvoicewebrtc.cpp index 92f107bb7c..93fdf8be34 100644 --- a/indra/newview/llvoicewebrtc.cpp +++ b/indra/newview/llvoicewebrtc.cpp @@ -704,7 +704,7 @@ void LLWebRTCVoiceClient::voiceControlStateMachine() break; case VOICE_STATE_WAIT_FOR_EXIT: - if (mRelogRequested && mVoiceEnabled) + if (mVoiceEnabled) { LL_INFOS("Voice") << "will attempt to reconnect to voice" << LL_ENDL; setVoiceControlStateUnless(VOICE_STATE_TP_WAIT); |