Skip to content
Snippets Groups Projects
Commit e33483a7 authored by Eugene Mutavchi's avatar Eugene Mutavchi
Browse files

Fixed normal bug EXT-4672 (Relog displays Voice Controls floater with Leave Call button)

--HG--
branch : product-engine
parent d72748a0
Branches
Tags
No related merge requests found
...@@ -164,6 +164,8 @@ BOOL LLCallFloater::postBuild() ...@@ -164,6 +164,8 @@ BOOL LLCallFloater::postBuild()
if (mDragHandle) if (mDragHandle)
mDragHandle->setTitleVisible(TRUE); mDragHandle->setTitleVisible(TRUE);
updateSession();
return TRUE; return TRUE;
} }
...@@ -246,7 +248,7 @@ void LLCallFloater::updateSession() ...@@ -246,7 +248,7 @@ void LLCallFloater::updateSession()
} }
} }
const LLUUID& session_id = voice_channel->getSessionID(); const LLUUID& session_id = voice_channel ? voice_channel->getSessionID() : LLUUID::null;
lldebugs << "Set speaker manager for session: " << session_id << llendl; lldebugs << "Set speaker manager for session: " << session_id << llendl;
LLIMModel::LLIMSession* im_session = LLIMModel::getInstance()->findIMSession(session_id); LLIMModel::LLIMSession* im_session = LLIMModel::getInstance()->findIMSession(session_id);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment