diff options
author | AndreyL ProductEngine <alihatskiy@productengine.com> | 2017-04-14 18:54:47 +0300 |
---|---|---|
committer | AndreyL ProductEngine <alihatskiy@productengine.com> | 2017-04-14 18:54:47 +0300 |
commit | 9791c704c979fb247e3734b81f6009030fa87a6d (patch) | |
tree | de5ab5e8045eb10447a674cc49bf216aa66c2eaf /indra | |
parent | 12ddd7b138495316c8124e6a4f9e0b4199fdfbf4 (diff) |
MAINT-7320 Avatars without voice mute hould be able to start the calls
Diffstat (limited to 'indra')
-rw-r--r-- | indra/newview/llimview.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llimview.cpp b/indra/newview/llimview.cpp index 0b0399c9d7..bcda9baa9a 100644 --- a/indra/newview/llimview.cpp +++ b/indra/newview/llimview.cpp @@ -3030,7 +3030,7 @@ void LLIMMgr::inviteToSession( LLIncomingCallDialog::processCallResponse(1, payload); return; } - else if (LLMuteList::getInstance()->isMuted(caller_id, LLMute::flagAll & ~LLMute::flagVoiceChat)) + else if (LLMuteList::getInstance()->isMuted(caller_id, LLMute::flagAll & ~LLMute::flagVoiceChat) && !voice_invite) { LL_INFOS() << "Rejecting session invite from initiating muted resident " << caller_name << LL_ENDL; return; |