mirror of
https://github.com/opensim/opensim.git
synced 2026-08-08 10:15:33 +08:00
HG on links request build the URI in http format with a / at end, this should not be needed but is coerent with current serverURI
This commit is contained in:
@@ -231,9 +231,10 @@ namespace OpenSim.Services.GridService
|
||||
{
|
||||
regionName = parts[2];
|
||||
}
|
||||
|
||||
bool success = TryCreateLink(scopeID, xloc, yloc, regionName, port, host, ownerID, out regInfo, out reason);
|
||||
if (success)
|
||||
|
||||
string serverURI = "http://"+ host +":"+ port.ToString() + "/";
|
||||
// bool success = TryCreateLink(scopeID, xloc, yloc, regionName, port, host, ownerID, out regInfo, out reason);
|
||||
if(TryCreateLink(scopeID, xloc, yloc, regionName, 0, null, serverURI, ownerID, out regInfo, out reason))
|
||||
{
|
||||
regInfo.RegionName = mapName;
|
||||
return regInfo;
|
||||
@@ -257,6 +258,8 @@ namespace OpenSim.Services.GridService
|
||||
}
|
||||
|
||||
serverURI = parts[0];
|
||||
if (!serverURI.EndsWith("/"))
|
||||
serverURI = serverURI + "/";
|
||||
|
||||
if (parts.Length >= 2)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user