diff options
author | Roxie Linden <roxie@lindenlab.com> | 2024-03-30 22:03:30 -0700 |
---|---|---|
committer | Roxie Linden <roxie@lindenlab.com> | 2024-03-30 22:03:30 -0700 |
commit | b3bb3d2d5145aa981cefd77ba564aa082475a8af (patch) | |
tree | 188f75c282a020515ad59cfa5f245be7034f4ba8 /indra/newview | |
parent | e272e387d3ce2111d2a045f79671b3ebc3819267 (diff) |
Renegotiate on remote description error
Diffstat (limited to 'indra/newview')
-rw-r--r-- | indra/newview/llvoicewebrtc.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/llvoicewebrtc.cpp b/indra/newview/llvoicewebrtc.cpp index 72d343598b..c196e16684 100644 --- a/indra/newview/llvoicewebrtc.cpp +++ b/indra/newview/llvoicewebrtc.cpp @@ -2733,8 +2733,8 @@ void LLVoiceWebRTCConnection::OnDataReceivedImpl(const std::string &data, bool b LLUUID agent_id(participant_id); if (agent_id.isNull()) { - LL_WARNS("Voice") << "Bad participant ID from data channel (" << participant_id << "):" << data << LL_ENDL; - continue; + // probably a test client. + continue; } LLWebRTCVoiceClient::participantStatePtr_t participant = |