summaryrefslogtreecommitdiff
path: root/indra/newview
diff options
context:
space:
mode:
authorAndrey Kleshchev <andreykproductengine@lindenlab.com>2023-03-18 03:05:08 +0200
committerAndrey Kleshchev <andreykproductengine@lindenlab.com>2023-03-18 03:05:08 +0200
commit7dad882c2f43b53c1618a4b140bd0b35be6fa106 (patch)
treec233523262d6247e84dca15973e37e5398494ab1 /indra/newview
parent0a2a1b35649ff405bdccf9e499609af435528300 (diff)
SL-18629 MAC build fix
Diffstat (limited to 'indra/newview')
-rw-r--r--indra/newview/llinventorymodel.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/llinventorymodel.cpp b/indra/newview/llinventorymodel.cpp
index a6f56c3a9c..c54a59d12f 100644
--- a/indra/newview/llinventorymodel.cpp
+++ b/indra/newview/llinventorymodel.cpp
@@ -3748,7 +3748,7 @@ void LLInventoryModel::processBulkUpdateInventory(LLMessageSystem* msg, void**)
// Temporary workaround: just fetch the item using AIS to get missing fields.
// If this works fine we might want to extract ids only from the message
// then use AIS as a primary fetcher
- AISAPI::FetchCategoryChildren((*cit)->getUUID(), AISAPI::INVENTORY, false);
+ AISAPI::FetchCategoryChildren((*cit)->getUUID(), AISAPI::INVENTORY);
}
for (item_array_t::iterator iit = items.begin(); iit != items.end(); ++iit)
{
@@ -3757,7 +3757,7 @@ void LLInventoryModel::processBulkUpdateInventory(LLMessageSystem* msg, void**)
// Temporary workaround: just fetch the item using AIS to get missing fields.
// If this works fine we might want to extract ids only from the message
// then use AIS as a primary fetcher
- AISAPI::FetchItem((*iit)->getUUID(), AISAPI::INVENTORY, false);
+ AISAPI::FetchItem((*iit)->getUUID(), AISAPI::INVENTORY);
}
gInventory.notifyObservers();