diff options
author | Tofu Buzzard <no-email> | 2011-03-16 22:44:29 +0000 |
---|---|---|
committer | Tofu Buzzard <no-email> | 2011-03-16 22:44:29 +0000 |
commit | 0671b6abc5acee0e7df879f9a10506aa42c2169c (patch) | |
tree | baf736cc9a5f9de8fb1fa9f9bf95be0dacc7b72f /indra/newview/llinventorymodelbackgroundfetch.cpp | |
parent | 1dffa1c78cd623fe8c930e128312260647bf91e7 (diff) | |
parent | 752b3fdbe044069635a2c6cd000c481561985954 (diff) |
merge
Diffstat (limited to 'indra/newview/llinventorymodelbackgroundfetch.cpp')
-rw-r--r-- | indra/newview/llinventorymodelbackgroundfetch.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llinventorymodelbackgroundfetch.cpp b/indra/newview/llinventorymodelbackgroundfetch.cpp index 570e48d526..e31360fcbc 100644 --- a/indra/newview/llinventorymodelbackgroundfetch.cpp +++ b/indra/newview/llinventorymodelbackgroundfetch.cpp @@ -182,7 +182,7 @@ void LLInventoryModelBackgroundFetch::backgroundFetch() { // If we'll be using the capability, we'll be sending batches and the background thing isn't as important. std::string url = gAgent.getRegion()->getCapability("FetchInventoryDescendents2"); - if (!url.empty()) + if (gSavedSettings.getBOOL("UseHTTPInventory") && !url.empty()) { bulkFetch(url); return; |