diff options
author | Teravus Ovares (Dan Olivares) | 2009-09-06 16:15:20 -0400 |
---|---|---|
committer | Teravus Ovares (Dan Olivares) | 2009-09-06 16:15:20 -0400 |
commit | 8797a8209829c0a3fe7ff9edbe46e2d636a546a8 (patch) | |
tree | e0637dd04b59f4387e160e9d26887d94904588d8 /OpenSim/Region/Communications | |
parent | * Moves another Legacy avatar inbounds check to Border (diff) | |
parent | Addendum to last commit. With the last commit, some other code that should (diff) | |
download | opensim-SC-8797a8209829c0a3fe7ff9edbe46e2d636a546a8.zip opensim-SC-8797a8209829c0a3fe7ff9edbe46e2d636a546a8.tar.gz opensim-SC-8797a8209829c0a3fe7ff9edbe46e2d636a546a8.tar.bz2 opensim-SC-8797a8209829c0a3fe7ff9edbe46e2d636a546a8.tar.xz |
Merge branch 'master' of ssh://MyConnection/var/git/opensim
Diffstat (limited to 'OpenSim/Region/Communications')
-rw-r--r-- | OpenSim/Region/Communications/Hypergrid/HGUserServices.cs | 2 | ||||
-rw-r--r-- | OpenSim/Region/Communications/OGS1/OGS1UserDataPlugin.cs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/Communications/Hypergrid/HGUserServices.cs b/OpenSim/Region/Communications/Hypergrid/HGUserServices.cs index aaa1c78..f1a56ef 100644 --- a/OpenSim/Region/Communications/Hypergrid/HGUserServices.cs +++ b/OpenSim/Region/Communications/Hypergrid/HGUserServices.cs | |||
@@ -313,7 +313,7 @@ namespace OpenSim.Region.Communications.Hypergrid | |||
313 | 313 | ||
314 | public bool IsForeignUser(UUID userID, out string userServerURL) | 314 | public bool IsForeignUser(UUID userID, out string userServerURL) |
315 | { | 315 | { |
316 | userServerURL = string.Empty; | 316 | userServerURL = m_commsManager.NetworkServersInfo.UserURL; |
317 | CachedUserInfo uinfo = m_commsManager.UserProfileCacheService.GetUserDetails(userID); | 317 | CachedUserInfo uinfo = m_commsManager.UserProfileCacheService.GetUserDetails(userID); |
318 | if (uinfo != null) | 318 | if (uinfo != null) |
319 | { | 319 | { |
diff --git a/OpenSim/Region/Communications/OGS1/OGS1UserDataPlugin.cs b/OpenSim/Region/Communications/OGS1/OGS1UserDataPlugin.cs index 92e6ae3..ec8512a 100644 --- a/OpenSim/Region/Communications/OGS1/OGS1UserDataPlugin.cs +++ b/OpenSim/Region/Communications/OGS1/OGS1UserDataPlugin.cs | |||
@@ -112,7 +112,7 @@ namespace OpenSim.Region.Communications.OGS1 | |||
112 | parameters.Add(param); | 112 | parameters.Add(param); |
113 | XmlRpcRequest req = new XmlRpcRequest("get_agent_by_uuid", parameters); | 113 | XmlRpcRequest req = new XmlRpcRequest("get_agent_by_uuid", parameters); |
114 | 114 | ||
115 | XmlRpcResponse resp = req.Send(GetUserServerURL(userId), 6000); | 115 | XmlRpcResponse resp = req.Send(m_commsManager.NetworkServersInfo.UserURL, 6000); |
116 | Hashtable respData = (Hashtable)resp.Value; | 116 | Hashtable respData = (Hashtable)resp.Value; |
117 | if (respData.Contains("error_type")) | 117 | if (respData.Contains("error_type")) |
118 | { | 118 | { |