summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormaksymsproductengine <maksymsproductengine@lindenlab.com>2014-05-15 04:56:20 +0300
committermaksymsproductengine <maksymsproductengine@lindenlab.com>2014-05-15 04:56:20 +0300
commit2af5c766c80fd69e2b5d7e5900f4b48f8882d061 (patch)
tree9021f8a8b7b56cbaa93d6b06dd585a31183e967d
parenta54e975b37426bd9c33d00067d171a285a7d6175 (diff)
MAINT-4016 FIXED Viewer attempts full fetch of member list before allowing user to leave group
-rwxr-xr-xindra/newview/llgroupactions.cpp5
1 files changed, 1 insertions, 4 deletions
diff --git a/indra/newview/llgroupactions.cpp b/indra/newview/llgroupactions.cpp
index f514729aa1..913efd6434 100755
--- a/indra/newview/llgroupactions.cpp
+++ b/indra/newview/llgroupactions.cpp
@@ -149,7 +149,7 @@ public:
void changed(LLGroupChange gc)
{
- if (gc == GC_MEMBER_DATA && !mRequestProcessed)
+ if (gc == GC_PROPERTIES && !mRequestProcessed)
{
LLGroupMgrGroupData* gdatap = LLGroupMgr::getInstance()->getGroupData(mGroupId);
if (!gdatap)
@@ -159,9 +159,6 @@ public:
else if (!gdatap->isMemberDataComplete())
{
LL_WARNS() << "LLGroupMgr::getInstance()->getGroupData()->isMemberDataComplete() was FALSE" << LL_ENDL;
- }
- else
- {
processGroupData();
mRequestProcessed = true;
}