Change the requester a little

slimupdates
Melanie 2010-01-03 03:24:06 +00:00
parent 08b507517b
commit 489a4752a5
1 changed files with 4 additions and 1 deletions

View File

@ -194,7 +194,10 @@ namespace OpenSim.Services.Connectors
sendData["VERSIONMAX"] = ProtocolVersions.ClientProtocolVersionMax.ToString(); sendData["VERSIONMAX"] = ProtocolVersions.ClientProtocolVersionMax.ToString();
sendData["METHOD"] = "setaccount"; 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); return SendAndGetBoolReply(sendData);
} }