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 a7ce027416..40227539d0 100644 --- a/indra/newview/llimview.cpp +++ b/indra/newview/llimview.cpp @@ -1748,7 +1748,8 @@ BOOL LLIncomingCallDialog::postBuild()  	childSetAction("Start IM", onStartIM, this);  	childSetFocus("Accept"); -	if(mPayload["notify_box_type"] != "VoiceInviteGroup" && mPayload["notify_box_type"] != "VoiceInviteAdHoc") +	std::string notify_box_type = mPayload["notify_box_type"].asString(); +	if(notify_box_type != "VoiceInviteGroup" && notify_box_type != "VoiceInviteAdHoc")  	{  		// starting notification's timer for P2P and AVALINE invitations  		mLifetimeTimer.start();  | 
