diff --git a/doc/contributions.txt b/doc/contributions.txt index 9bdc25b1ee0110c40044e61082d90b293f8627d5..dbb18f28bf1315c7fdf53054273e2b69db2ffa39 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 8be81c944e5133d2be5591ac9321bafb10e2d66d..c34f14a813e4187ba04e43c2ddbb6a3ba60e6511 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; }