diff options
author | Homer Horwitz | 2009-03-15 21:01:04 +0000 |
---|---|---|
committer | Homer Horwitz | 2009-03-15 21:01:04 +0000 |
commit | c9a3a764f16ca6b60c7dbd08bf03bda2075d38ef (patch) | |
tree | 7944c0bfbc194710d81ecc4ef2adca6ca51fa28b | |
parent | Fixes Mantis#3301. Thank you kindly, MaimedLeech for a patch that: (diff) | |
download | opensim-SC_OLD-c9a3a764f16ca6b60c7dbd08bf03bda2075d38ef.zip opensim-SC_OLD-c9a3a764f16ca6b60c7dbd08bf03bda2075d38ef.tar.gz opensim-SC_OLD-c9a3a764f16ca6b60c7dbd08bf03bda2075d38ef.tar.bz2 opensim-SC_OLD-c9a3a764f16ca6b60c7dbd08bf03bda2075d38ef.tar.xz |
regionInfo isn't defined here yet, which leads to a NRE. Grid-server
provided us with the data, so let's use it for now. Hopefully
fixes Mantis #3297.
-rw-r--r-- | OpenSim/Region/Communications/OGS1/OGS1GridServices.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Communications/OGS1/OGS1GridServices.cs b/OpenSim/Region/Communications/OGS1/OGS1GridServices.cs index 6191f27..a397093 100644 --- a/OpenSim/Region/Communications/OGS1/OGS1GridServices.cs +++ b/OpenSim/Region/Communications/OGS1/OGS1GridServices.cs | |||
@@ -418,7 +418,7 @@ namespace OpenSim.Region.Communications.OGS1 | |||
418 | 418 | ||
419 | // Ok, so this is definitively the wrong place to do this, way too hard coded, but it doesn't seem we GET this info? | 419 | // Ok, so this is definitively the wrong place to do this, way too hard coded, but it doesn't seem we GET this info? |
420 | 420 | ||
421 | string simURI = "http://" + regionInfo.ExternalHostName + ":" + regionInfo.InternalEndPoint.Port; | 421 | string simURI = "http://" + externalHostName + ":" + simPort; |
422 | 422 | ||
423 | // string externalUri = (string) responseData["sim_uri"]; | 423 | // string externalUri = (string) responseData["sim_uri"]; |
424 | 424 | ||