diff options
author | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2023-04-28 00:18:46 +0300 |
---|---|---|
committer | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2023-04-28 00:18:46 +0300 |
commit | 9349a9b5d4ccb21f195e5c156d897836399fd11b (patch) | |
tree | e5db484db8fa679400463467c821cab17791f09e /indra/newview | |
parent | 377f177a8667702eee12414fb5534fd6732da1d2 (diff) |
SL-19533 More children per subset fetch request
Diffstat (limited to 'indra/newview')
-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 5b8ee6e244..5f7950df08 100644 --- a/indra/newview/llinventorymodelbackgroundfetch.cpp +++ b/indra/newview/llinventorymodelbackgroundfetch.cpp @@ -730,7 +730,7 @@ void LLInventoryModelBackgroundFetch::bulkFetchViaAis(const FetchQueueInfo& fetc LLViewerInventoryCategory::EFetchType target_state = LLViewerInventoryCategory::FETCH_RECURSIVE; // technically limit is 'as many as you can put into url', but for now stop at 10 - const S32 batch_limit = 10; + const S32 batch_limit = 20; bool content_done = true; for (LLInventoryModel::cat_array_t::iterator it = categories->begin(); |