Skip to content
Snippets Groups Projects
Commit dd070683 authored by Merov Linden's avatar Merov Linden
Browse files

DD-59 : WIP : Fixed consistency check bug

parent 1b4408e5
No related branches found
No related tags found
No related merge requests found
...@@ -173,7 +173,7 @@ void update_marketplace_category(const LLUUID& cat_id) ...@@ -173,7 +173,7 @@ void update_marketplace_category(const LLUUID& cat_id)
if (LLMarketplaceData::instance().isListed(listing_uuid)) if (LLMarketplaceData::instance().isListed(listing_uuid))
{ {
LLUUID version_folder_uuid = LLMarketplaceData::instance().getVersionFolderID(listing_uuid); LLUUID version_folder_uuid = LLMarketplaceData::instance().getVersionFolderID(listing_uuid);
if (!gInventory.isObjectDescendentOf(version_folder_uuid, listing_uuid)) if (version_folder_uuid.notNull() && !gInventory.isObjectDescendentOf(version_folder_uuid, listing_uuid))
{ {
// *TODO : Confirm with Producer that this is what we want to happen in that case! // *TODO : Confirm with Producer that this is what we want to happen in that case!
llinfos << "Merov : Delisting as the version folder is not under the listing folder anymore!!" << llendl; llinfos << "Merov : Delisting as the version folder is not under the listing folder anymore!!" << llendl;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment