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
parent
155f8dac1d
commit
d3cd323f0c
|
@ -232,8 +232,9 @@ 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)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue