* One more debug message on FetchInventoryDescendants

* More streams close on finally
This commit is contained in:
Diva Canto
2009-10-06 19:55:35 -07:00
parent 89d23a1fa2
commit b5b53dd3eb
2 changed files with 63 additions and 17 deletions

View File

@@ -1168,6 +1168,7 @@ namespace OpenSim.Region.Framework.Scenes
private void SendInventoryUpdate(IClientAPI client, InventoryFolderBase folder, bool fetchFolders, bool fetchItems)
{
m_log.DebugFormat("[AGENT INVENTORY]: Send Inventory Folder {0} Update to {1} {2}", folder.Name, client.FirstName, client.LastName);
InventoryCollection contents = InventoryService.GetFolderContent(client.AgentId, folder.ID);
client.SendInventoryFolderDetails(client.AgentId, folder.ID, contents.Items, contents.Folders, fetchFolders, fetchItems);
}