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

This commit is contained in:
Diva Canto
2009-09-28 07:53:52 -07:00
parent 500cd3505a
commit 3091e5db9d

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;
}