Change the requester a little

This commit is contained in:
Melanie
2010-01-03 03:24:06 +00:00
parent 08b507517b
commit 489a4752a5

View File

@@ -194,7 +194,10 @@ namespace OpenSim.Services.Connectors
sendData["VERSIONMAX"] = ProtocolVersions.ClientProtocolVersionMax.ToString();
sendData["METHOD"] = "setaccount";
sendData["account"] = data.ToKeyValuePairs();
Dictionary<string, object> structData = data.ToKeyValuePairs();
foreach (KeyValuePair<string,object> kvp in structData)
sendData[kvp.Key] = kvp.Value.ToString();
return SendAndGetBoolReply(sendData);
}