summaryrefslogtreecommitdiff
path: root/indra/newview/llappearancemgr.cpp
diff options
context:
space:
mode:
authorAndrey Kleshchev <andreykproductengine@lindenlab.com>2023-09-14 20:58:42 +0300
committerAndrey Kleshchev <andreykproductengine@lindenlab.com>2023-09-14 20:58:42 +0300
commitb09c19d27ceb2a3695cd688b1ccffcb3084f0e46 (patch)
treef6667201d0573aaca85782938987b7f362213c46 /indra/newview/llappearancemgr.cpp
parentfa47e4402b7925a45c5fec9fb9d92fb5e34a589e (diff)
SL-20285 Updated individual request count declaration
Diffstat (limited to 'indra/newview/llappearancemgr.cpp')
-rw-r--r--indra/newview/llappearancemgr.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/indra/newview/llappearancemgr.cpp b/indra/newview/llappearancemgr.cpp
index 876ae23e62..8010b84c20 100644
--- a/indra/newview/llappearancemgr.cpp
+++ b/indra/newview/llappearancemgr.cpp
@@ -4486,8 +4486,7 @@ public:
// AIS can fetch couple items, but if there
// is more than a dozen it will be very slow
// it's faster to get whole folder in such case
- const S32 MAX_INDIVIDUAL_FETCH = 10;
- if (incomplete_count > MAX_INDIVIDUAL_FETCH
+ if (incomplete_count > LLInventoryFetchItemsObserver::MAX_INDIVIDUAL_ITEM_REQUESTS
|| (incomplete_count > 1 && complete_count == 0))
{
LLInventoryModelBackgroundFetch::instance().scheduleFolderFetch(*it, true);