minor: correctly print out missing item id when it can't be found rather than a NullReferenceException

slimupdates
Justin Clark-Casey (justincc) 2010-04-16 22:57:44 +01:00
parent 17d023ba5b
commit 45563e20e0
2 changed files with 4 additions and 2 deletions

View File

@ -311,10 +311,13 @@ namespace OpenSim.Region.CoreModules.ServiceConnectorsOut.Inventory
{ {
// m_log.DebugFormat("[LOCAL INVENTORY SERVICES CONNECTOR]: Requesting inventory item {0}", item.ID); // m_log.DebugFormat("[LOCAL INVENTORY SERVICES CONNECTOR]: Requesting inventory item {0}", item.ID);
UUID requestedItemId = item.ID;
item = m_InventoryService.GetItem(item); item = m_InventoryService.GetItem(item);
if (null == item) if (null == item)
m_log.ErrorFormat("[LOCAL INVENTORY SERVICES CONNECTOR]: Could not find item with id {0}", item.ID); m_log.ErrorFormat(
"[LOCAL INVENTORY SERVICES CONNECTOR]: Could not find item with id {0}", requestedItemId);
return item; return item;
} }

View File

@ -471,7 +471,6 @@ namespace OpenSim.Region.Framework.Scenes
return null; return null;
} }
if (recipientParentFolderId == UUID.Zero) if (recipientParentFolderId == UUID.Zero)
{ {
InventoryFolderBase recipientRootFolder = InventoryService.GetRootFolder(recipientId); InventoryFolderBase recipientRootFolder = InventoryService.GetRootFolder(recipientId);