mirror of
https://github.com/opensim/opensim.git
synced 2026-08-07 09:45:47 +08:00
Bug fix in neighbors: serverURI now always has a trailing '/'... neighbors were not getting notified.
This commit is contained in:
@@ -87,7 +87,7 @@ namespace OpenSim.Services.Connectors
|
||||
|
||||
public bool DoHelloNeighbourCall(GridRegion region, RegionInfo thisRegion)
|
||||
{
|
||||
string uri = region.ServerURI + "/region/" + thisRegion.RegionID + "/";
|
||||
string uri = region.ServerURI + "region/" + thisRegion.RegionID + "/";
|
||||
//m_log.Debug(" >>> DoHelloNeighbourCall <<< " + uri);
|
||||
|
||||
WebRequest HelloNeighbourRequest = WebRequest.Create(uri);
|
||||
|
||||
Reference in New Issue
Block a user