diff options
author | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2023-04-12 00:53:48 +0300 |
---|---|---|
committer | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2023-04-12 00:53:48 +0300 |
commit | 1f2cbfdbe227bda2f3bd2b17b5ac1b125cb28b2d (patch) | |
tree | a894df901fc440d015632ef173fe958ebd2421c0 | |
parent | 627c4e45baec177dd8e0a07b0c3137492819c0ca (diff) |
SL-19533 Content should be recursive only
-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 cab3010cf1..69f688d51e 100644 --- a/indra/newview/llinventorymodelbackgroundfetch.cpp +++ b/indra/newview/llinventorymodelbackgroundfetch.cpp @@ -712,7 +712,7 @@ void LLInventoryModelBackgroundFetch::bulkFetchViaAis(const FetchQueueInfo& fetc ++it) { // not push_front to not cause an infinite loop - mFetchFolderQueue.push_back(FetchQueueInfo((*it)->getUUID(), fetch_info.mFetchType)); + mFetchFolderQueue.push_back(FetchQueueInfo((*it)->getUUID(), FT_RECURSIVE)); } } } |