diff options
author | Diva Canto | 2013-06-30 07:21:22 -0700 |
---|---|---|
committer | Diva Canto | 2013-06-30 07:21:22 -0700 |
commit | 1fc873d09fbc0d29e35d2a8f34c134bb8ac01480 (patch) | |
tree | 3b0f559906662dd91c4785d9c015fe64998605ac /OpenSim/Region/CoreModules/ServiceConnectorsOut | |
parent | More on mantis #6625 (diff) | |
download | opensim-SC-1fc873d09fbc0d29e35d2a8f34c134bb8ac01480.zip opensim-SC-1fc873d09fbc0d29e35d2a8f34c134bb8ac01480.tar.gz opensim-SC-1fc873d09fbc0d29e35d2a8f34c134bb8ac01480.tar.bz2 opensim-SC-1fc873d09fbc0d29e35d2a8f34c134bb8ac01480.tar.xz |
Same fix to LocalInventoryServiceConnector.cs
Diffstat (limited to 'OpenSim/Region/CoreModules/ServiceConnectorsOut')
-rw-r--r-- | OpenSim/Region/CoreModules/ServiceConnectorsOut/Inventory/LocalInventoryServiceConnector.cs | 3 |
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 | ||