aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim
diff options
context:
space:
mode:
authordiva2009-05-16 00:33:17 +0000
committerdiva2009-05-16 00:33:17 +0000
commit29301e66c0f99d0c0e7af66c9ab951a147ee4b4d (patch)
treea5c72c4534f6088ba834bff23f93688f28d21e33 /OpenSim
parentAnother minor bug fix for making notecard/script savings work with old asset ... (diff)
downloadopensim-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.
Diffstat (limited to 'OpenSim')
-rw-r--r--OpenSim/Servers/Connectors/Asset/AssetServiceConnector.cs2
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)