diff options
| -rwxr-xr-x | indra/newview/llimview.cpp | 5 | 
1 files changed, 2 insertions, 3 deletions
| diff --git a/indra/newview/llimview.cpp b/indra/newview/llimview.cpp index 4614ce8fcb..ba96c5ee24 100755 --- a/indra/newview/llimview.cpp +++ b/indra/newview/llimview.cpp @@ -3043,10 +3043,9 @@ void LLIMMgr::inviteToSession(  	{  		bool isRejectGroupCall = (gSavedSettings.getBOOL("VoiceCallsRejectGroup") && (notify_box_type == "VoiceInviteGroup"));  		bool isRejectNonFriendCall = (gSavedSettings.getBOOL("VoiceCallsFriendsOnly") && (LLAvatarTracker::instance().getBuddyInfo(caller_id) == NULL)); -		bool isRejectDoNotDisturb = (gAgent.isDoNotDisturb() && !hasSession(session_id)); -		if	(isRejectGroupCall || isRejectNonFriendCall || isRejectDoNotDisturb) +		if	(isRejectGroupCall || isRejectNonFriendCall || gAgent.isDoNotDisturb())  		{ -			if (isRejectDoNotDisturb && !isRejectGroupCall && !isRejectNonFriendCall) +			if (gAgent.isDoNotDisturb() && !isRejectGroupCall && !isRejectNonFriendCall)  			{  				LLSD args;  				addSystemMessage(session_id, "you_auto_rejected_call", args); | 
