diff options
| author | Loren Shih <seraph@lindenlab.com> | 2010-05-04 15:29:12 -0400 |
|---|---|---|
| committer | Loren Shih <seraph@lindenlab.com> | 2010-05-04 15:29:12 -0400 |
| commit | a322dd0c2138bde56465633b943438ac378e6aab (patch) | |
| tree | 4767d3a33b56a9820e103dd0158d07c5cc1a16d0 /indra/newview/llviewerinventory.cpp | |
| parent | 8daf25b65c30f58889ed5923d43bf785cb758026 (diff) | |
EXT-7197 : Inventory caps is causing recursive inventory fetch on login
Added code to support non-recursive inventory folder fetching for AIS.
Diffstat (limited to 'indra/newview/llviewerinventory.cpp')
| -rw-r--r-- | indra/newview/llviewerinventory.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llviewerinventory.cpp b/indra/newview/llviewerinventory.cpp index b39ee8b2e0..ed3d6a0464 100644 --- a/indra/newview/llviewerinventory.cpp +++ b/indra/newview/llviewerinventory.cpp @@ -587,7 +587,7 @@ bool LLViewerInventoryCategory::fetch() std::string url = gAgent.getRegion()->getCapability("WebFetchInventoryDescendents"); if (!url.empty()) //Capability found. Build up LLSD and use it. { - LLInventoryModelBackgroundFetch::instance().start(mUUID); + LLInventoryModelBackgroundFetch::instance().start(mUUID, false); } else { //Deprecated, but if we don't have a capability, use the old system. |
