diff options
author | UbitUmarov | 2012-03-23 03:41:48 +0000 |
---|---|---|
committer | UbitUmarov | 2012-03-23 03:41:48 +0000 |
commit | 4db05a98c2c1678b612e0a3d2f95c24e34ac5f13 (patch) | |
tree | 3929bd993c504a3de7697f449e36535aeeddf737 /OpenSim/Services/Connectors/UserAccounts | |
parent | Merge branch 'master' of ssh://3dhosting.de/var/git/careminster into ubitwork (diff) | |
parent | Merge branch 'master' into careminster (diff) | |
download | opensim-SC-4db05a98c2c1678b612e0a3d2f95c24e34ac5f13.zip opensim-SC-4db05a98c2c1678b612e0a3d2f95c24e34ac5f13.tar.gz opensim-SC-4db05a98c2c1678b612e0a3d2f95c24e34ac5f13.tar.bz2 opensim-SC-4db05a98c2c1678b612e0a3d2f95c24e34ac5f13.tar.xz |
Merge branch 'master' of ssh://3dhosting.de/var/git/careminster into ubitwork
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 | } |