diff options
author | Diva Canto | 2014-06-15 07:26:27 -0700 |
---|---|---|
committer | Diva Canto | 2014-06-15 07:26:27 -0700 |
commit | dcd8e745846ad3530c6401b2e3c9f42009b9d487 (patch) | |
tree | 5ebf141a7cd9b3dcd03376d7d8dc0fc75ae6af5b | |
parent | Add [Startup]LogShowStatsSeconds=n parameter which controls the interval (diff) | |
download | opensim-SC_OLD-dcd8e745846ad3530c6401b2e3c9f42009b9d487.zip opensim-SC_OLD-dcd8e745846ad3530c6401b2e3c9f42009b9d487.tar.gz opensim-SC_OLD-dcd8e745846ad3530c6401b2e3c9f42009b9d487.tar.bz2 opensim-SC_OLD-dcd8e745846ad3530c6401b2e3c9f42009b9d487.tar.xz |
Manual change as per patch in mantis #7212. (the patch failed to apply, but the fix was good) Thanks FreakyTech.
-rw-r--r-- | OpenSim/Region/CoreModules/ServiceConnectorsOut/Inventory/HGInventoryBroker.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/CoreModules/ServiceConnectorsOut/Inventory/HGInventoryBroker.cs b/OpenSim/Region/CoreModules/ServiceConnectorsOut/Inventory/HGInventoryBroker.cs index fd41187..9179dc7 100644 --- a/OpenSim/Region/CoreModules/ServiceConnectorsOut/Inventory/HGInventoryBroker.cs +++ b/OpenSim/Region/CoreModules/ServiceConnectorsOut/Inventory/HGInventoryBroker.cs | |||
@@ -244,7 +244,7 @@ namespace OpenSim.Region.CoreModules.ServiceConnectorsOut.Inventory | |||
244 | if (inventoryURL != null && inventoryURL != string.Empty) | 244 | if (inventoryURL != null && inventoryURL != string.Empty) |
245 | { | 245 | { |
246 | inventoryURL = inventoryURL.Trim(new char[] { '/' }); | 246 | inventoryURL = inventoryURL.Trim(new char[] { '/' }); |
247 | m_InventoryURLs.Add(userID, inventoryURL); | 247 | m_InventoryURLs[userID] = inventoryURL; |
248 | m_log.DebugFormat("[HG INVENTORY CONNECTOR]: Added {0} to the cache of inventory URLs", inventoryURL); | 248 | m_log.DebugFormat("[HG INVENTORY CONNECTOR]: Added {0} to the cache of inventory URLs", inventoryURL); |
249 | return; | 249 | return; |
250 | } | 250 | } |