diff options
Fix for minor bug introduced yesterday, HG only. Can't lookup the profile when we're looking up the profile...
Diffstat (limited to 'OpenSim/Region/Communications/OGS1/OGS1UserServices.cs')
-rw-r--r-- | OpenSim/Region/Communications/OGS1/OGS1UserServices.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Communications/OGS1/OGS1UserServices.cs b/OpenSim/Region/Communications/OGS1/OGS1UserServices.cs index 11ae6e3..e5ea929 100644 --- a/OpenSim/Region/Communications/OGS1/OGS1UserServices.cs +++ b/OpenSim/Region/Communications/OGS1/OGS1UserServices.cs | |||
@@ -380,7 +380,7 @@ namespace OpenSim.Region.Communications.OGS1 | |||
380 | IList parameters = new ArrayList(); | 380 | IList parameters = new ArrayList(); |
381 | parameters.Add(param); | 381 | parameters.Add(param); |
382 | XmlRpcRequest req = new XmlRpcRequest("get_user_by_uuid", parameters); | 382 | XmlRpcRequest req = new XmlRpcRequest("get_user_by_uuid", parameters); |
383 | XmlRpcResponse resp = req.Send(GetUserServerURL(avatarID), 30000); | 383 | XmlRpcResponse resp = req.Send(m_commsManager.NetworkServersInfo.UserURL, 30000); |
384 | Hashtable respData = (Hashtable)resp.Value; | 384 | Hashtable respData = (Hashtable)resp.Value; |
385 | 385 | ||
386 | return ConvertXMLRPCDataToUserProfile(respData); | 386 | return ConvertXMLRPCDataToUserProfile(respData); |