diff options
Diffstat (limited to 'OpenSim/Servers/Connectors/Asset')
-rw-r--r-- | OpenSim/Servers/Connectors/Asset/AssetServiceConnector.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Servers/Connectors/Asset/AssetServiceConnector.cs b/OpenSim/Servers/Connectors/Asset/AssetServiceConnector.cs index cebd471..8888c87 100644 --- a/OpenSim/Servers/Connectors/Asset/AssetServiceConnector.cs +++ b/OpenSim/Servers/Connectors/Asset/AssetServiceConnector.cs | |||
@@ -197,7 +197,7 @@ namespace OpenSim.Servers.Connectors | |||
197 | { | 197 | { |
198 | // Placing this here, so that this work with old asset servers that don't send any reply back | 198 | // Placing this here, so that this work with old asset servers that don't send any reply back |
199 | // SynchronousRestObjectRequester returns somethins that is not an empty string | 199 | // SynchronousRestObjectRequester returns somethins that is not an empty string |
200 | if (!"00000000-0000-0000-0000-000000000000".Equals(newID)) | 200 | if (newID != null) |
201 | asset.ID = newID; | 201 | asset.ID = newID; |
202 | 202 | ||
203 | if (m_Cache != null) | 203 | if (m_Cache != null) |