aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services/Connectors
diff options
context:
space:
mode:
authorDiva Canto2010-01-13 09:54:27 -0800
committerDiva Canto2010-01-13 09:54:27 -0800
commit901e94c836b8c460e6bd2e4f16835e139abaefd6 (patch)
tree25fc9f9c179ed7ce7190708bdfa87def4fbd8da9 /OpenSim/Services/Connectors
parentUpdated configs. (diff)
downloadopensim-SC_OLD-901e94c836b8c460e6bd2e4f16835e139abaefd6.zip
opensim-SC_OLD-901e94c836b8c460e6bd2e4f16835e139abaefd6.tar.gz
opensim-SC_OLD-901e94c836b8c460e6bd2e4f16835e139abaefd6.tar.bz2
opensim-SC_OLD-901e94c836b8c460e6bd2e4f16835e139abaefd6.tar.xz
One more buglet removed: send the region UUID, not the region handle.
Diffstat (limited to 'OpenSim/Services/Connectors')
-rw-r--r--OpenSim/Services/Connectors/Simulation/SimulationServiceConnector.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Services/Connectors/Simulation/SimulationServiceConnector.cs b/OpenSim/Services/Connectors/Simulation/SimulationServiceConnector.cs
index cf8ab50..b1b2a30 100644
--- a/OpenSim/Services/Connectors/Simulation/SimulationServiceConnector.cs
+++ b/OpenSim/Services/Connectors/Simulation/SimulationServiceConnector.cs
@@ -426,7 +426,7 @@ namespace OpenSim.Services.Connectors.Simulation
426 string uri = string.Empty; 426 string uri = string.Empty;
427 try 427 try
428 { 428 {
429 uri = "http://" + destination.ExternalEndPoint.Address + ":" + destination.HttpPort + "/agent/" + id + "/" + destination.RegionHandle.ToString() + "/"; 429 uri = "http://" + destination.ExternalEndPoint.Address + ":" + destination.HttpPort + "/agent/" + id + "/" + destination.RegionID.ToString() + "/";
430 } 430 }
431 catch (Exception e) 431 catch (Exception e)
432 { 432 {