diff options
| -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;  }  | 
