diff options
author | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2023-09-20 18:48:13 +0300 |
---|---|---|
committer | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2023-09-20 18:50:12 +0300 |
commit | 81752116e1243d68ae67c4771f267c4170dd9028 (patch) | |
tree | e9dbd96f9c974e64275824f9701e38e7fe19f6aa /indra | |
parent | 1057880d2fc70fafce4053415a879372a8719b1e (diff) |
SL-20298 Fix recursive fetch not working properly.
Diffstat (limited to 'indra')
-rw-r--r-- | indra/newview/llinventorymodelbackgroundfetch.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/newview/llinventorymodelbackgroundfetch.cpp b/indra/newview/llinventorymodelbackgroundfetch.cpp index 07d5713fc8..91adef8047 100644 --- a/indra/newview/llinventorymodelbackgroundfetch.cpp +++ b/indra/newview/llinventorymodelbackgroundfetch.cpp @@ -864,7 +864,8 @@ void LLInventoryModelBackgroundFetch::bulkFetchViaAis(const FetchQueueInfo& fetc else { // Already fetched, check if anything inside needs fetching - if (fetch_info.mFetchType == FT_RECURSIVE) + if (fetch_info.mFetchType == FT_RECURSIVE + || fetch_info.mFetchType == FT_FOLDER_AND_CONTENT) { LLInventoryModel::cat_array_t * categories(NULL); LLInventoryModel::item_array_t * items(NULL); |