From f40b85c4f495b9079991c41a26b76d397a6168ae Mon Sep 17 00:00:00 2001
From: Andrey Kleshchev <andreykproductengine@lindenlab.com>
Date: Wed, 23 Aug 2023 19:21:30 +0300
Subject: [PATCH] SL-20184 Crash when opening Marketplace Listings Window

Looks like a bit of code from Inventory Extensions viewer leaked into
release. This was supposed to prevent 'folder does not exist' spam as
Inventory Extensions does not create folders this way, instead it
blocked folder creation.
---
 indra/newview/llinventorymodel.cpp | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/indra/newview/llinventorymodel.cpp b/indra/newview/llinventorymodel.cpp
index b4727de77f7..cd0ce889203 100644
--- a/indra/newview/llinventorymodel.cpp
+++ b/indra/newview/llinventorymodel.cpp
@@ -596,9 +596,7 @@ const LLUUID LLInventoryModel::findCategoryUUIDForTypeInRoot(
 	
 	if(rv.isNull() 
        && root_id.notNull()
-       && create_folder
-       && preferred_type != LLFolderType::FT_MARKETPLACE_LISTINGS
-       && preferred_type != LLFolderType::FT_OUTBOX)
+       && create_folder)
 	{
 
 		if (isInventoryUsable())
-- 
GitLab