aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Communications/OGS1/OGS1UserServices.cs
diff options
context:
space:
mode:
authordiva2009-04-14 18:32:11 +0000
committerdiva2009-04-14 18:32:11 +0000
commit017faf0effbba5d064e0097dce9b8f1eeac86251 (patch)
tree1942abc6b9d926713518ee0340fda6921d69efa0 /OpenSim/Region/Communications/OGS1/OGS1UserServices.cs
parent* Change simple asset cache test to manually pump the asset server rather tha... (diff)
downloadopensim-SC_OLD-017faf0effbba5d064e0097dce9b8f1eeac86251.zip
opensim-SC_OLD-017faf0effbba5d064e0097dce9b8f1eeac86251.tar.gz
opensim-SC_OLD-017faf0effbba5d064e0097dce9b8f1eeac86251.tar.bz2
opensim-SC_OLD-017faf0effbba5d064e0097dce9b8f1eeac86251.tar.xz
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.cs2
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);