From a0f282643f26789ef7e1b624398581cceafc257c Mon Sep 17 00:00:00 2001 From: Andrey Lihatskiy Date: Thu, 11 Apr 2024 19:10:46 +0300 Subject: Restore the fix for #945 (lost during merge #1178) --- indra/newview/lloutfitslist.cpp | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/indra/newview/lloutfitslist.cpp b/indra/newview/lloutfitslist.cpp index 20ef1588ae..7bb9fa2eed 100644 --- a/indra/newview/lloutfitslist.cpp +++ b/indra/newview/lloutfitslist.cpp @@ -913,16 +913,8 @@ void LLOutfitListBase::onIdleRefreshList() LLViewerInventoryCategory *cat = gInventory.getCategory(*items_iter); if (cat) { - LLInventoryObject* obj = gInventory.getObject(*items_iter); - if (!obj || (obj->getType() != LLAssetType::AT_CATEGORY)) - { - break; - } - cat = (LLViewerInventoryCategory*)obj; + updateChangedCategoryName(cat, cat->getName()); } - std::string name = cat->getName(); - - updateChangedCategoryName(cat, name); } sortOutfits(); -- cgit v1.2.3