From df13aa408b06ed7e42a1fd8c5adfba86ddca9a68 Mon Sep 17 00:00:00 2001 From: Router Gray Date: Fri, 24 May 2019 10:09:00 -0500 Subject: [PATCH] Add missing operand in inventory actions. --- indra/newview/llinventorybridge.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/indra/newview/llinventorybridge.cpp b/indra/newview/llinventorybridge.cpp index 2f527e134..61b16c729 100644 --- a/indra/newview/llinventorybridge.cpp +++ b/indra/newview/llinventorybridge.cpp @@ -3142,7 +3142,7 @@ void LLFolderBridge::performAction(LLInventoryModel* model, std::string action) } return; } - else if ("marketplace_copy_id") + else if ("marketplace_copy_id" == action) { auto id = LLMarketplaceData::instance().getListingID(mUUID); gViewerWindow->getWindow()->copyTextToClipboard(utf8str_to_wstring(std::to_string(id)));