diff options
-rw-r--r-- | doc/contributions.txt | 2 | ||||
-rw-r--r-- | indra/newview/llinventorymodel.cpp | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/doc/contributions.txt b/doc/contributions.txt index 9bdc25b1ee..dbb18f28bf 100644 --- a/doc/contributions.txt +++ b/doc/contributions.txt @@ -11,7 +11,7 @@ Drewan Keats - VWR-28 Dylan Haskell - VWR-72 Dzonatas Sol - VWR-198 Eddy Stryker - VWR-15, VWR-23 -Gigs Taggart - VWR-71 +Gigs Taggart - VWR-71, VWR-326 Ginko Bayliss - VWR-4 Hikkoshi Sakai - VWR-429 Hiro Sommambulist - VWR-66, VWR-97, VWR-100, VWR-105, VWR-108, VWR-118, VWR-136 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; } |