diff options
author | diva | 2009-05-16 00:33:17 +0000 |
---|---|---|
committer | diva | 2009-05-16 00:33:17 +0000 |
commit | 29301e66c0f99d0c0e7af66c9ab951a147ee4b4d (patch) | |
tree | a5c72c4534f6088ba834bff23f93688f28d21e33 | |
parent | Another minor bug fix for making notecard/script savings work with old asset ... (diff) | |
download | opensim-SC_OLD-29301e66c0f99d0c0e7af66c9ab951a147ee4b4d.zip opensim-SC_OLD-29301e66c0f99d0c0e7af66c9ab951a147ee4b4d.tar.gz opensim-SC_OLD-29301e66c0f99d0c0e7af66c9ab951a147ee4b4d.tar.bz2 opensim-SC_OLD-29301e66c0f99d0c0e7af66c9ab951a147ee4b4d.tar.xz |
Oops. Next time try not to commit things at the same time as having important discussions on the IRC.
-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) |