diff options
author | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2025-02-12 14:21:18 +0200 |
---|---|---|
committer | Andrey Kleshchev <117672381+akleshchev@users.noreply.github.com> | 2025-02-12 17:49:46 +0200 |
commit | bec382698b4fd4bf3e1ad7673cfd4770ebebdd9b (patch) | |
tree | 34e880886949de655118e264f1548365d11fc4ed | |
parent | 09c60de43c7f6a43607ab9ce3937071d1706830d (diff) |
viewer-private#395 Fix voice not reconnecting
-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 7d6ad743bd..8792ae3285 100644 --- a/indra/newview/llvoicevivox.cpp +++ b/indra/newview/llvoicevivox.cpp @@ -2004,7 +2004,7 @@ bool LLVivoxVoiceClient::waitForChannel() { recordingAndPlaybackMode(); } - else if (mProcessChannels && (mNextAudioSession == NULL) && checkParcelChanged()) + else if (mProcessChannels && ((mNextAudioSession == NULL) || checkParcelChanged())) { // the parcel is changed, or we have no pending audio sessions, // so try to request the parcel voice info |