diff options
author | AlexanderP ProductEngine <apaschenko@productengine.com> | 2012-07-04 17:57:46 +0300 |
---|---|---|
committer | AlexanderP ProductEngine <apaschenko@productengine.com> | 2012-07-04 17:57:46 +0300 |
commit | c76c73770bf1a4095100cdb79021826ebebbd2f0 (patch) | |
tree | 628528ad1a9810f0a59abb2ba80f2e34af49c97b | |
parent | 89d8a49f28dac5d99ec05a5201203ec57f72be02 (diff) |
CHUI-195 FIXED Starting ad-hoc conference call does not open Conversations floater
-rw-r--r-- | indra/newview/llimview.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/newview/llimview.cpp b/indra/newview/llimview.cpp index 79018ec366..cdbb7c7cca 100644 --- a/indra/newview/llimview.cpp +++ b/indra/newview/llimview.cpp @@ -2583,7 +2583,6 @@ LLUUID LLIMMgr::addSession( LLDynamicArray<LLUUID> ids; ids.put(other_participant_id); LLUUID session_id = addSession(name, dialog, other_participant_id, ids, voice); - notifyObserverSessionVoiceOrIMStarted(session_id); return session_id; } @@ -2653,6 +2652,8 @@ LLUUID LLIMMgr::addSession( noteMutedUsers(session_id, ids); } + notifyObserverSessionVoiceOrIMStarted(session_id); + return session_id; } |