Fix an inventory fetch issue

avinationmerge
Melanie 2010-09-30 02:47:07 +02:00
parent 9522881404
commit ac7a4a7d38
1 changed files with 3 additions and 0 deletions

View File

@ -515,6 +515,9 @@ namespace OpenSim.Region.Framework.Scenes
public void HandleFetchInventoryDescendents(IClientAPI remoteClient, UUID folderID, UUID ownerID,
bool fetchFolders, bool fetchItems, int sortOrder)
{
if (folderID == UUID.Zero)
return;
// FIXME MAYBE: We're not handling sortOrder!
// TODO: This code for looking in the folder for the library should be folded somewhere else