From 85f893f0b38b85430e9e5a058af5c65993741bb5 Mon Sep 17 00:00:00 2001 From: MW Date: Sat, 28 Jun 2008 22:19:48 +0000 Subject: [PATCH] more disabling multiple inventory server support in LoginService --- OpenSim/Framework/Communications/LoginService.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/OpenSim/Framework/Communications/LoginService.cs b/OpenSim/Framework/Communications/LoginService.cs index 8fcb4f5027..9005cff86d 100644 --- a/OpenSim/Framework/Communications/LoginService.cs +++ b/OpenSim/Framework/Communications/LoginService.cs @@ -230,7 +230,7 @@ namespace OpenSim.Framework.Communications try { - inventData = GetInventorySkeleton(agentID, userProfile.UserInventoryURI); + inventData = GetInventorySkeleton(agentID, ""); } catch (Exception e) { @@ -386,7 +386,7 @@ namespace OpenSim.Framework.Communications LLUUID agentID = userProfile.ID; // Inventory Library Section - InventoryData inventData = GetInventorySkeleton(agentID, userProfile.UserInventoryURI); + InventoryData inventData = GetInventorySkeleton(agentID, ""); ArrayList AgentInventoryArray = inventData.InventoryArray; Hashtable InventoryRootHash = new Hashtable();