aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/ServiceConnectorsOut
diff options
context:
space:
mode:
authorDiva Canto2013-06-30 07:21:22 -0700
committerDiva Canto2013-06-30 07:21:22 -0700
commit1fc873d09fbc0d29e35d2a8f34c134bb8ac01480 (patch)
tree3b0f559906662dd91c4785d9c015fe64998605ac /OpenSim/Region/CoreModules/ServiceConnectorsOut
parentMore on mantis #6625 (diff)
downloadopensim-SC_OLD-1fc873d09fbc0d29e35d2a8f34c134bb8ac01480.zip
opensim-SC_OLD-1fc873d09fbc0d29e35d2a8f34c134bb8ac01480.tar.gz
opensim-SC_OLD-1fc873d09fbc0d29e35d2a8f34c134bb8ac01480.tar.bz2
opensim-SC_OLD-1fc873d09fbc0d29e35d2a8f34c134bb8ac01480.tar.xz
Same fix to LocalInventoryServiceConnector.cs
Diffstat (limited to 'OpenSim/Region/CoreModules/ServiceConnectorsOut')
-rw-r--r--OpenSim/Region/CoreModules/ServiceConnectorsOut/Inventory/LocalInventoryServiceConnector.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Region/CoreModules/ServiceConnectorsOut/Inventory/LocalInventoryServiceConnector.cs b/OpenSim/Region/CoreModules/ServiceConnectorsOut/Inventory/LocalInventoryServiceConnector.cs
index ec5751d..99913a9 100644
--- a/OpenSim/Region/CoreModules/ServiceConnectorsOut/Inventory/LocalInventoryServiceConnector.cs
+++ b/OpenSim/Region/CoreModules/ServiceConnectorsOut/Inventory/LocalInventoryServiceConnector.cs
@@ -196,7 +196,8 @@ namespace OpenSim.Region.CoreModules.ServiceConnectorsOut.Inventory
196 Util.FireAndForget(delegate 196 Util.FireAndForget(delegate
197 { 197 {
198 foreach (InventoryItemBase item in items) 198 foreach (InventoryItemBase item in items)
199 UserManager.AddUser(item.CreatorIdAsUuid, item.CreatorData); 199 if (!string.IsNullOrEmpty(item.CreatorData))
200 UserManager.AddUser(item.CreatorIdAsUuid, item.CreatorData);
200 }); 201 });
201 } 202 }
202 203