Fixed bug in user server related to region's serverURI.

0.6.8-post-fixes
Diva Canto 2009-09-28 07:53:52 -07:00
parent 500cd3505a
commit 3091e5db9d
1 changed files with 1 additions and 1 deletions

View File

@ -240,7 +240,7 @@ namespace OpenSim.Grid.UserServer.Modules
rinfo.RegionLocY = (uint)(gregion.RegionLocY / Constants.RegionSize);
rinfo.RegionName = gregion.RegionName;
rinfo.ScopeID = gregion.ScopeID;
rinfo.ServerURI = "http://" + gregion.ExternalHostName + ":" + gregion.HttpPort.ToString();
rinfo.ServerURI = gregion.ServerURI;
return rinfo;
}