mirror of
https://github.com/opensim/opensim.git
synced 2026-08-12 20:49:51 +08:00
* Patch from Justincc that swaps out LLUUIDs for Guid on the inventory REST calls
This commit is contained in:
@@ -51,4 +51,4 @@ namespace OpenSim.Framework.Communications
|
||||
/// <returns></returns>
|
||||
List<InventoryFolderBase> RequestFirstLevelFolders(LLUUID userID);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -74,14 +74,20 @@ namespace OpenSim.Framework.Communications
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
public List<InventoryFolderBase> RequestFirstLevelFolders(Guid rawUserID)
|
||||
{
|
||||
LLUUID userID = new LLUUID(rawUserID);
|
||||
return RequestFirstLevelFolders(userID);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Returns the root folder plus any folders in root (so down one level in the Inventory folders tree)
|
||||
/// </summary>
|
||||
/// <param name="userID"></param>
|
||||
/// <returns></returns>
|
||||
public List<InventoryFolderBase> RequestFirstLevelFolders(LLUUID userID)
|
||||
{
|
||||
{
|
||||
List<InventoryFolderBase> inventoryList = new List<InventoryFolderBase>();
|
||||
InventoryFolderBase rootFolder = null;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user