diff options
| author | Jonathan Yap <none@none> | 2013-11-20 10:21:41 -0500 |
|---|---|---|
| committer | Jonathan Yap <none@none> | 2013-11-20 10:21:41 -0500 |
| commit | 176901422f0122dad8d1e4e423d0bc19e9e4ad8a (patch) | |
| tree | 5cd1203283d78411f1741953f8fe4661514e8795 /indra/newview/llfloaterperms.cpp | |
| parent | 0031e9a97be1bf6e9fe773c23506494d09ce91ae (diff) | |
STORM-68 Reapply changes to inventory processing lost in the merge.
Move call to updateCap back to where it was. The place it was moved
to was too early in the login sequence and was causing a crash.
Diffstat (limited to 'indra/newview/llfloaterperms.cpp')
| -rwxr-xr-x | indra/newview/llfloaterperms.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/indra/newview/llfloaterperms.cpp b/indra/newview/llfloaterperms.cpp index dc4969f5e6..4923420a3e 100755 --- a/indra/newview/llfloaterperms.cpp +++ b/indra/newview/llfloaterperms.cpp @@ -175,15 +175,18 @@ public: void LLFloaterPermsDefault::updateCap(bool alwaysUpdate) { +llwarns << "DBG start" << llendl; if(!alwaysUpdate && mCapSent) { return; } +llwarns << "DBG getRegion" << llendl; std::string object_url = gAgent.getRegion()->getCapability("DefaultObjectPermissions"); if(!object_url.empty()) { +llwarns << "DBG post" << llendl; LLSD report = LLSD::emptyMap(); report["Group"] = (LLSD::Integer)LLFloaterPerms::getGroupPerms(sCategoryNames[CAT_OBJECTS]); report["Everyone"] = (LLSD::Integer)LLFloaterPerms::getEveryonePerms(sCategoryNames[CAT_OBJECTS]); |
