diff options
| -rw-r--r-- | indra/newview/llimview.cpp | 7 | 
1 files changed, 5 insertions, 2 deletions
| diff --git a/indra/newview/llimview.cpp b/indra/newview/llimview.cpp index 28d9f2170d..9e878f8c75 100644 --- a/indra/newview/llimview.cpp +++ b/indra/newview/llimview.cpp @@ -1274,8 +1274,11 @@ void LLCallDialogManager::onVoiceChannelChanged(const LLUUID &session_id)  	}  	sSession = session;  	sSession->mVoiceChannel->setStateChangedCallback(LLCallDialogManager::onVoiceChannelStateChanged); -	sPreviousSessionlName = sCurrentSessionlName; -	sCurrentSessionlName = session->mName; +	if(sCurrentSessionlName != session->mName) +	{ +		sPreviousSessionlName = sCurrentSessionlName; +		sCurrentSessionlName = session->mName; +	}  }  void LLCallDialogManager::onVoiceChannelStateChanged(const LLVoiceChannel::EState& old_state, const LLVoiceChannel::EState& new_state, const LLVoiceChannel::EDirection& direction) | 
