summaryrefslogtreecommitdiff
path: root/indra/newview/llgroupmgr.cpp
diff options
context:
space:
mode:
authorAndreyL ProductEngine <andreylproductengine@lindenlab.com>2015-10-27 14:04:25 +0200
committerAndreyL ProductEngine <andreylproductengine@lindenlab.com>2015-10-27 14:04:25 +0200
commiteccafc5c405e7e3727aa5b793ff508f34afd7648 (patch)
treeb49394a1467bf51d9bbd965b8baa53d4b444b3a3 /indra/newview/llgroupmgr.cpp
parent7f39e2583ffffee5866663ebf8798f393fc67570 (diff)
MAINT-5758 FIXED "Ban Member" from the group chatters list context menu
is greyed out once you have performed a ban, until you load the group members list from group info.
Diffstat (limited to 'indra/newview/llgroupmgr.cpp')
-rwxr-xr-xindra/newview/llgroupmgr.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llgroupmgr.cpp b/indra/newview/llgroupmgr.cpp
index 4d92fee04f..e1315adfde 100755
--- a/indra/newview/llgroupmgr.cpp
+++ b/indra/newview/llgroupmgr.cpp
@@ -772,7 +772,7 @@ void LLGroupMgrGroupData::banMemberById(const LLUUID& participant_uuid)
mPendingBanRequest = true;
mPendingBanMemberID = participant_uuid;
- if (!mMemberDataComplete)
+ if (!mMemberDataComplete || !mMembers.size())
{
LLGroupMgr::getInstance()->sendCapGroupMembersRequest(mID);
}