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
|
@ -231,9 +231,10 @@ namespace OpenSim.Services.GridService
|
||||||
{
|
{
|
||||||
regionName = parts[2];
|
regionName = parts[2];
|
||||||
}
|
}
|
||||||
|
|
||||||
bool success = TryCreateLink(scopeID, xloc, yloc, regionName, port, host, ownerID, out regInfo, out reason);
|
string serverURI = "http://"+ host +":"+ port.ToString() + "/";
|
||||||
if (success)
|
// 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;
|
regInfo.RegionName = mapName;
|
||||||
return regInfo;
|
return regInfo;
|
||||||
|
@ -257,6 +258,8 @@ namespace OpenSim.Services.GridService
|
||||||
}
|
}
|
||||||
|
|
||||||
serverURI = parts[0];
|
serverURI = parts[0];
|
||||||
|
if (!serverURI.EndsWith("/"))
|
||||||
|
serverURI = serverURI + "/";
|
||||||
|
|
||||||
if (parts.Length >= 2)
|
if (parts.Length >= 2)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue