From ba0f8e7b69f5f82342e83cda702178f780180e57 Mon Sep 17 00:00:00 2001 From: Rye Mutt <rye@alchemyviewer.org> Date: Fri, 20 Jan 2023 20:48:05 -0500 Subject: [PATCH] Fix group mute --- indra/newview/llimview.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/indra/newview/llimview.cpp b/indra/newview/llimview.cpp index 31b66c89203..5462397da49 100644 --- a/indra/newview/llimview.cpp +++ b/indra/newview/llimview.cpp @@ -2780,7 +2780,8 @@ void LLIMMgr::addMessage( // Logically it would make more sense to reject the session sooner, in another area of the // code, but the session has to be established inside the server before it can be left. - if (LLMuteList::getInstance()->isMuted(other_participant_id, LLMute::flagTextChat) && !from_linden) + if ((LLMuteList::getInstance()->isMuted(other_participant_id, LLMute::flagTextChat) && !from_linden) + || LLMuteList::getInstance()->isGroupMuted(new_session_id)) { LL_WARNS() << "Leaving IM session from initiating muted resident " << from << LL_ENDL; if (!gIMMgr->leaveSession(new_session_id)) -- GitLab