mirror of
https://github.com/opensim/opensim.git
synced 2026-08-05 00:46:02 +08:00
A small change in FetchInventoryDescendantsCAPS.
This commit is contained in:
@@ -497,10 +497,11 @@ namespace OpenSim.Region.Framework.Scenes
|
||||
return ret;
|
||||
}
|
||||
|
||||
InventoryCollection contents = InventoryService.GetFolderContent(agentID, folderID);
|
||||
InventoryCollection contents = new InventoryCollection();
|
||||
|
||||
if (folderID != UUID.Zero)
|
||||
{
|
||||
contents = InventoryService.GetFolderContent(agentID, folderID);
|
||||
InventoryFolderBase containingFolder = new InventoryFolderBase();
|
||||
containingFolder.ID = folderID;
|
||||
containingFolder.Owner = agentID;
|
||||
|
||||
Reference in New Issue
Block a user