diff options
author | Mnikolenko Productengine <mnikolenko@productengine.com> | 2017-12-14 15:48:02 +0200 |
---|---|---|
committer | Mnikolenko Productengine <mnikolenko@productengine.com> | 2017-12-14 15:48:02 +0200 |
commit | 8fb9dd88df33a20667697a13294fc6c5ed902c00 (patch) | |
tree | 4c93df3742a396b85ece05c8810dc98e770723a3 /indra/newview/llavataractions.cpp | |
parent | ae41f0497e17afb5c87bf9f10a21393fd36e3ffb (diff) |
MAINT-8089 FIXED User A can't unblock text from user B when use right-click menu in chat
Diffstat (limited to 'indra/newview/llavataractions.cpp')
-rw-r--r-- | indra/newview/llavataractions.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llavataractions.cpp b/indra/newview/llavataractions.cpp index 8fe684ad79..f0b74e7439 100644 --- a/indra/newview/llavataractions.cpp +++ b/indra/newview/llavataractions.cpp @@ -1011,7 +1011,7 @@ void LLAvatarActions::toggleMute(const LLUUID& id, U32 flags) LLAvatarNameCache::get(id, &av_name); LLMuteList* mute_list = LLMuteList::getInstance(); - bool is_muted = mute_list->isMuted(id, LLMute::flagVoiceChat); + bool is_muted = mute_list->isMuted(id, flags); LLMute mute(id, av_name.getUserName(), LLMute::AGENT); if (!is_muted) |