summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMerov Linden <merov@lindenlab.com>2015-04-02 21:40:22 -0700
committerMerov Linden <merov@lindenlab.com>2015-04-02 21:40:22 -0700
commit32e5d99c9d4b14116eb12a49e9349ee7b1802ee4 (patch)
treebfa05e17c46f25f4dad8a11f7ada4eba02dc2b22
parent8e117983808f7b4f9d4aa288ec48cea5f0f89536 (diff)
DD-291 : Use a heavier but more resilient test for listing updates
-rwxr-xr-xindra/newview/llinventorymodel.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llinventorymodel.cpp b/indra/newview/llinventorymodel.cpp
index 9f621b1e88..8c4be57aaa 100755
--- a/indra/newview/llinventorymodel.cpp
+++ b/indra/newview/llinventorymodel.cpp
@@ -3062,7 +3062,7 @@ void LLInventoryModel::processBulkUpdateInventory(LLMessageSystem* msg, void**)
<< LL_ENDL;
// If the parent folder is a listing folder, all we need to do is update the SLM data
- if (LLMarketplaceData::instance().isListed(tfolder->getParentUUID()))
+ if (depth_nesting_in_marketplace(tfolder->getParentUUID()) == 1)
{
// Trigger an SLM listing update
S32 listing_id = LLMarketplaceData::instance().getListingID(tfolder->getParentUUID());