diff options
author | Melanie | 2012-03-22 20:38:49 +0000 |
---|---|---|
committer | Melanie | 2012-03-22 20:38:49 +0000 |
commit | 33818994810130117bae62ba2123bf8b55f181ea (patch) | |
tree | eeb54ef00919abbd1a86b08a659570512856ac42 /OpenSim/Services/Connectors/UserAccounts | |
parent | Revert "Stop messing order of updates, destroing the defined order of the sel... (diff) | |
parent | Rework Diva's patch to simplify it (diff) | |
download | opensim-SC-33818994810130117bae62ba2123bf8b55f181ea.zip opensim-SC-33818994810130117bae62ba2123bf8b55f181ea.tar.gz opensim-SC-33818994810130117bae62ba2123bf8b55f181ea.tar.bz2 opensim-SC-33818994810130117bae62ba2123bf8b55f181ea.tar.xz |
Merge branch 'master' into careminster
Conflicts:
OpenSim/Region/CoreModules/World/Land/LandObject.cs
OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs
Diffstat (limited to 'OpenSim/Services/Connectors/UserAccounts')
-rw-r--r-- | OpenSim/Services/Connectors/UserAccounts/UserAccountServiceConnector.cs | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/OpenSim/Services/Connectors/UserAccounts/UserAccountServiceConnector.cs b/OpenSim/Services/Connectors/UserAccounts/UserAccountServiceConnector.cs index 7815d7d..5731e2f 100644 --- a/OpenSim/Services/Connectors/UserAccounts/UserAccountServiceConnector.cs +++ b/OpenSim/Services/Connectors/UserAccounts/UserAccountServiceConnector.cs | |||
@@ -202,8 +202,15 @@ namespace OpenSim.Services.Connectors | |||
202 | 202 | ||
203 | Dictionary<string, object> structData = data.ToKeyValuePairs(); | 203 | Dictionary<string, object> structData = data.ToKeyValuePairs(); |
204 | 204 | ||
205 | foreach (KeyValuePair<string,object> kvp in structData) | 205 | foreach (KeyValuePair<string, object> kvp in structData) |
206 | { | ||
207 | if (kvp.Value == null) | ||
208 | { | ||
209 | m_log.DebugFormat("[ACCOUNTS CONNECTOR]: Null value for {0}", kvp.Key); | ||
210 | continue; | ||
211 | } | ||
206 | sendData[kvp.Key] = kvp.Value.ToString(); | 212 | sendData[kvp.Key] = kvp.Value.ToString(); |
213 | } | ||
207 | 214 | ||
208 | return SendAndGetBoolReply(sendData); | 215 | return SendAndGetBoolReply(sendData); |
209 | } | 216 | } |