mirror of
https://github.com/opensim/opensim.git
synced 2026-08-11 20:05:33 +08:00
Changed RequestRootFolder to GetRootFolder
This commit is contained in:
@@ -552,7 +552,7 @@ namespace OpenSim.Framework.Communications.Tests
|
||||
return false;
|
||||
}
|
||||
|
||||
public InventoryFolderBase RequestRootFolder(UUID userID)
|
||||
public InventoryFolderBase GetRootFolder(UUID userID)
|
||||
{
|
||||
InventoryFolderBase root = new InventoryFolderBase();
|
||||
root.ID = UUID.Random();
|
||||
|
||||
@@ -694,7 +694,7 @@ namespace OpenSim.Framework.Communications
|
||||
// local service (standalone)
|
||||
m_log.Debug("[USERSTORAGE]: using IInventoryService to create user's inventory");
|
||||
m_InventoryService.CreateUserInventory(userProf.ID);
|
||||
InventoryFolderBase rootfolder = m_InventoryService.RequestRootFolder(userProf.ID);
|
||||
InventoryFolderBase rootfolder = m_InventoryService.GetRootFolder(userProf.ID);
|
||||
if (rootfolder != null)
|
||||
userProf.RootInventoryFolderID = rootfolder.ID;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user