summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
Diffstat (limited to 'indra')
-rw-r--r--indra/newview/llinventorymodel.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/llinventorymodel.cpp b/indra/newview/llinventorymodel.cpp
index 8be81c944e..c34f14a813 100644
--- a/indra/newview/llinventorymodel.cpp
+++ b/indra/newview/llinventorymodel.cpp
@@ -3369,8 +3369,8 @@ void LLInventoryAddedObserver::changed(U32 mask)
const char* msg_name = msg->getMessageName();
if (!msg_name) return;
- if (!(!strcmp(msg_name, "UpdateCreateInventoryItem")
- || !strcmp(msg_name, "FetchInventoryReply")))
+ // We only want newly created inventory items. JC
+ if ( strcmp(msg_name, "UpdateCreateInventoryItem") )
{
return;
}