From 0f2bb1bd8307a0802a6e24c7eb50f6a0082edea4 Mon Sep 17 00:00:00 2001 From: Roxie Linden Date: Wed, 26 Jun 2024 12:53:49 -0700 Subject: Make the webrtc viewer work for vivox adhoc/group calls. There was an issue on the release grid where old-style credentials were being sent over and the webrtc viewer wasn't dealing with them properly. --- indra/newview/llimview.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'indra/newview/llimview.cpp') diff --git a/indra/newview/llimview.cpp b/indra/newview/llimview.cpp index 2978de6a22..d3f013c67c 100644 --- a/indra/newview/llimview.cpp +++ b/indra/newview/llimview.cpp @@ -3853,7 +3853,7 @@ bool LLIMMgr::startCall(const LLUUID& session_id, LLVoiceChannel::EDirection dir { LLVoiceChannel* voice_channel = LLIMModel::getInstance()->getVoiceChannel(session_id); if (!voice_channel) return false; - if (!voice_channel_info.isUndefined()) + if (voice_channel_info.isDefined() && voice_channel_info.isMap() && voice_channel_info.size() > 0) { voice_channel->setChannelInfo(voice_channel_info); } -- cgit v1.2.3