From 91950b314796e3e292eef10811b6c5b8ed63cdc1 Mon Sep 17 00:00:00 2001 From: Diva Canto Date: Tue, 27 Mar 2012 14:24:59 -0700 Subject: Amend to previous commit regarding the config name. Bugs bite. --- OpenSim/Services/HypergridService/HGInventoryService.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/OpenSim/Services/HypergridService/HGInventoryService.cs b/OpenSim/Services/HypergridService/HGInventoryService.cs index a1287fd..b29d803 100644 --- a/OpenSim/Services/HypergridService/HGInventoryService.cs +++ b/OpenSim/Services/HypergridService/HGInventoryService.cs @@ -53,8 +53,6 @@ namespace OpenSim.Services.HypergridService LogManager.GetLogger( MethodBase.GetCurrentMethod().DeclaringType); - protected new IXInventoryData m_Database; - private string m_HomeURL; private IUserAccountService m_UserAccountService; -- cgit v1.1 From db5f46fa23e994b14ccc3144435557b1a173c82b Mon Sep 17 00:00:00 2001 From: Diva Canto Date: Tue, 27 Mar 2012 15:24:55 -0700 Subject: Let grided simulators retrieve the user's inventory skeleton --- .../ServiceConnectorsOut/Inventory/RemoteXInventoryServiceConnector.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenSim/Region/CoreModules/ServiceConnectorsOut/Inventory/RemoteXInventoryServiceConnector.cs b/OpenSim/Region/CoreModules/ServiceConnectorsOut/Inventory/RemoteXInventoryServiceConnector.cs index 10ab6d0..77573c3 100644 --- a/OpenSim/Region/CoreModules/ServiceConnectorsOut/Inventory/RemoteXInventoryServiceConnector.cs +++ b/OpenSim/Region/CoreModules/ServiceConnectorsOut/Inventory/RemoteXInventoryServiceConnector.cs @@ -167,7 +167,7 @@ namespace OpenSim.Region.CoreModules.ServiceConnectorsOut.Inventory public List GetInventorySkeleton(UUID userId) { - return new List(); + return m_RemoteConnector.GetInventorySkeleton(userId); } public InventoryCollection GetUserInventory(UUID userID) -- cgit v1.1 From 37603ca6dac88b98dcb0eba058531f29cd0fc316 Mon Sep 17 00:00:00 2001 From: Melanie Date: Tue, 27 Mar 2012 23:11:06 +0100 Subject: Reverse a conditional in XInventory that made updating system folder evrsion numbers impossible --- OpenSim/Services/InventoryService/XInventoryService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenSim/Services/InventoryService/XInventoryService.cs b/OpenSim/Services/InventoryService/XInventoryService.cs index 8c57d17..7b2c3a6 100644 --- a/OpenSim/Services/InventoryService/XInventoryService.cs +++ b/OpenSim/Services/InventoryService/XInventoryService.cs @@ -318,7 +318,7 @@ namespace OpenSim.Services.InventoryService if (check.Type != -1 || xFolder.type != -1) { - if (xFolder.version > check.Version) + if (xFolder.version < check.Version) return false; check.Version = (ushort)xFolder.version; xFolder = ConvertFromOpenSim(check); -- cgit v1.1