diff options
author | Diva Canto | 2010-01-13 09:54:27 -0800 |
---|---|---|
committer | Diva Canto | 2010-01-13 09:54:27 -0800 |
commit | 901e94c836b8c460e6bd2e4f16835e139abaefd6 (patch) | |
tree | 25fc9f9c179ed7ce7190708bdfa87def4fbd8da9 /OpenSim/Services | |
parent | Updated configs. (diff) | |
download | opensim-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')
-rw-r--r-- | OpenSim/Services/Connectors/Simulation/SimulationServiceConnector.cs | 2 |
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 | { |