diff options
| author | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2023-08-05 02:05:11 +0300 | 
|---|---|---|
| committer | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2023-08-05 02:10:53 +0300 | 
| commit | dd699f84c92020868656a2ad8086a73372e5a19d (patch) | |
| tree | 2d4577b470675da345d2e3ba1fa99eb1db0d91e1 /indra | |
| parent | c4c5778b263a1f9036ba6c6c18f96d1311988fcb (diff) | |
SL-20120 Do not account for deltas when fetching
Is supposed to set version and descendant info in parseCategory
Diffstat (limited to 'indra')
| -rw-r--r-- | indra/newview/llaisapi.cpp | 3 | 
1 files changed, 0 insertions, 3 deletions
| diff --git a/indra/newview/llaisapi.cpp b/indra/newview/llaisapi.cpp index f26549cc3d..34c6a1e8ab 100644 --- a/indra/newview/llaisapi.cpp +++ b/indra/newview/llaisapi.cpp @@ -1210,7 +1210,6 @@ void AISUpdate::parseItem(const LLSD& item_map)          if (mFetch)          {              mItemsCreated[item_id] = new_item; -            mCatDescendentDeltas[new_item->getParentUUID()];              new_item->setComplete(true);              if (new_item->getParentUUID().isNull()) @@ -1264,7 +1263,6 @@ void AISUpdate::parseLink(const LLSD& link_map, S32 depth)              new_link->setSaleInfo(default_sale_info);              //LL_DEBUGS("Inventory") << "creating link from llsd: " << ll_pretty_print_sd(link_map) << LL_ENDL;              mItemsCreated[item_id] = new_link; -            mCatDescendentDeltas[parent_id];              new_link->setComplete(true);              if (new_link->getParentUUID().isNull()) @@ -1381,7 +1379,6 @@ void AISUpdate::parseCategory(const LLSD& category_map, S32 depth)                  new_cat->setDescendentCount(descendent_count);              }              mCategoriesCreated[category_id] = new_cat; -            mCatDescendentDeltas[new_cat->getParentUUID()];          }  		else if (curr_cat)  		{ | 
