aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/Framework/EntityTransfer
diff options
context:
space:
mode:
authorOren Hurvitz2014-04-06 19:38:19 +0300
committerOren Hurvitz2014-04-07 07:26:44 +0100
commit55cc8044cbb5f723831ddc5070407be8d0cc1255 (patch)
treeecde4c2d298beea72b0346ce764ef2854780201d /OpenSim/Region/CoreModules/Framework/EntityTransfer
parentFixed: during a teleport we always sent the error "The teleport destination c... (diff)
downloadopensim-SC_OLD-55cc8044cbb5f723831ddc5070407be8d0cc1255.zip
opensim-SC_OLD-55cc8044cbb5f723831ddc5070407be8d0cc1255.tar.gz
opensim-SC_OLD-55cc8044cbb5f723831ddc5070407be8d0cc1255.tar.bz2
opensim-SC_OLD-55cc8044cbb5f723831ddc5070407be8d0cc1255.tar.xz
Refactored: use Scene.GetAgentHomeURI() to get the Home URI of a user
Diffstat (limited to 'OpenSim/Region/CoreModules/Framework/EntityTransfer')
-rw-r--r--OpenSim/Region/CoreModules/Framework/EntityTransfer/EntityTransferModule.cs5
-rw-r--r--OpenSim/Region/CoreModules/Framework/EntityTransfer/HGEntityTransferModule.cs6
2 files changed, 2 insertions, 9 deletions
diff --git a/OpenSim/Region/CoreModules/Framework/EntityTransfer/EntityTransferModule.cs b/OpenSim/Region/CoreModules/Framework/EntityTransfer/EntityTransferModule.cs
index 4ecb8e6..3d9c93f 100644
--- a/OpenSim/Region/CoreModules/Framework/EntityTransfer/EntityTransferModule.cs
+++ b/OpenSim/Region/CoreModules/Framework/EntityTransfer/EntityTransferModule.cs
@@ -529,10 +529,7 @@ namespace OpenSim.Region.CoreModules.Framework.EntityTransfer
529 529
530 if (reg != null) 530 if (reg != null)
531 { 531 {
532 string homeURI = null; 532 string homeURI = Scene.GetAgentHomeURI(sp.ControllingClient.AgentId);
533 AgentCircuitData acd = Scene.AuthenticateHandler.GetAgentCircuitData(sp.ControllingClient.AgentId);
534 if (acd != null && acd.ServiceURLs != null && acd.ServiceURLs.ContainsKey("HomeURI"))
535 homeURI = (string)acd.ServiceURLs["HomeURI"];
536 533
537 string message; 534 string message;
538 finalDestination = GetFinalDestination(reg, sp.ControllingClient.AgentId, homeURI, out message); 535 finalDestination = GetFinalDestination(reg, sp.ControllingClient.AgentId, homeURI, out message);
diff --git a/OpenSim/Region/CoreModules/Framework/EntityTransfer/HGEntityTransferModule.cs b/OpenSim/Region/CoreModules/Framework/EntityTransfer/HGEntityTransferModule.cs
index 5b7dfe3..52e0d5a 100644
--- a/OpenSim/Region/CoreModules/Framework/EntityTransfer/HGEntityTransferModule.cs
+++ b/OpenSim/Region/CoreModules/Framework/EntityTransfer/HGEntityTransferModule.cs
@@ -532,11 +532,7 @@ namespace OpenSim.Region.CoreModules.Framework.EntityTransfer
532 GatekeeperServiceConnector gConn = new GatekeeperServiceConnector(); 532 GatekeeperServiceConnector gConn = new GatekeeperServiceConnector();
533 GridRegion gatekeeper = new GridRegion(); 533 GridRegion gatekeeper = new GridRegion();
534 gatekeeper.ServerURI = lm.Gatekeeper; 534 gatekeeper.ServerURI = lm.Gatekeeper;
535 535 string homeURI = Scene.GetAgentHomeURI(remoteClient.AgentId);
536 string homeURI = null;
537 AgentCircuitData acd = Scene.AuthenticateHandler.GetAgentCircuitData(remoteClient.AgentId);
538 if (acd != null && acd.ServiceURLs != null && acd.ServiceURLs.ContainsKey("HomeURI"))
539 homeURI = (string)acd.ServiceURLs["HomeURI"];
540 536
541 string message; 537 string message;
542 GridRegion finalDestination = gConn.GetHyperlinkRegion(gatekeeper, new UUID(lm.RegionID), remoteClient.AgentId, homeURI, out message); 538 GridRegion finalDestination = gConn.GetHyperlinkRegion(gatekeeper, new UUID(lm.RegionID), remoteClient.AgentId, homeURI, out message);