diff options
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r-- | OpenSim/Framework/Communications/LoginService.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Framework/Communications/LoginService.cs b/OpenSim/Framework/Communications/LoginService.cs index 08b071f..8fcb4f5 100644 --- a/OpenSim/Framework/Communications/LoginService.cs +++ b/OpenSim/Framework/Communications/LoginService.cs | |||
@@ -94,7 +94,7 @@ namespace OpenSim.Framework.Communications | |||
94 | /// <param name="userID"></param> | 94 | /// <param name="userID"></param> |
95 | /// <returns></returns> | 95 | /// <returns></returns> |
96 | /// <exception cref='System.Exception'>This will be thrown if there is a problem with the inventory service</exception> | 96 | /// <exception cref='System.Exception'>This will be thrown if there is a problem with the inventory service</exception> |
97 | protected abstract InventoryData GetInventorySkeleton(LLUUID userID); | 97 | protected abstract InventoryData GetInventorySkeleton(LLUUID userID, string inventoryServerUrl); |
98 | 98 | ||
99 | /// <summary> | 99 | /// <summary> |
100 | /// Called when we receive the client's initial XMLRPC login_to_simulator request message | 100 | /// Called when we receive the client's initial XMLRPC login_to_simulator request message |
@@ -230,7 +230,7 @@ namespace OpenSim.Framework.Communications | |||
230 | 230 | ||
231 | try | 231 | try |
232 | { | 232 | { |
233 | inventData = GetInventorySkeleton(agentID); | 233 | inventData = GetInventorySkeleton(agentID, userProfile.UserInventoryURI); |
234 | } | 234 | } |
235 | catch (Exception e) | 235 | catch (Exception e) |
236 | { | 236 | { |
@@ -386,7 +386,7 @@ namespace OpenSim.Framework.Communications | |||
386 | LLUUID agentID = userProfile.ID; | 386 | LLUUID agentID = userProfile.ID; |
387 | 387 | ||
388 | // Inventory Library Section | 388 | // Inventory Library Section |
389 | InventoryData inventData = GetInventorySkeleton(agentID); | 389 | InventoryData inventData = GetInventorySkeleton(agentID, userProfile.UserInventoryURI); |
390 | ArrayList AgentInventoryArray = inventData.InventoryArray; | 390 | ArrayList AgentInventoryArray = inventData.InventoryArray; |
391 | 391 | ||
392 | Hashtable InventoryRootHash = new Hashtable(); | 392 | Hashtable InventoryRootHash = new Hashtable(); |