mirror of
https://github.com/opensim/opensim.git
synced 2026-08-12 04:05:42 +08:00
Add the XInventoryServicesConnector, a new inventory connector without the cruft
of the old one that makes inventory crash on folder creation. This is just the connector part, the handler is still ont he todo list.
This commit is contained in:
@@ -108,14 +108,14 @@ namespace OpenSim.Server.Handlers.Presence
|
||||
out info.RegionID))
|
||||
return FailureResult();
|
||||
|
||||
foreach (KeyValuePair<string, string> kvp in request)
|
||||
foreach (KeyValuePair<string, object> kvp in request)
|
||||
{
|
||||
if (kvp.Key == "METHOD" ||
|
||||
kvp.Key == "PrincipalID" ||
|
||||
kvp.Key == "RegionID")
|
||||
continue;
|
||||
|
||||
info.Data[kvp.Key] = kvp.Value;
|
||||
info.Data[kvp.Key] = kvp.Value.ToString();
|
||||
}
|
||||
|
||||
if (m_PresenceService.Report(info))
|
||||
|
||||
Reference in New Issue
Block a user