mirror of
https://github.com/opensim/opensim.git
synced 2026-08-10 11:33:28 +08:00
remove end slash from most URLs we send to viewers
This commit is contained in:
@@ -237,7 +237,7 @@ namespace OpenSim.Region.ClientStack.Linden
|
||||
public void RegisterHandlers()
|
||||
{
|
||||
// this path is also defined elsewhere so keeping it
|
||||
string seedcapsBase = "/CAPS/" + m_HostCapsObj.CapsObjectPath + "0000/";
|
||||
string seedcapsBase = "/CAPS/" + m_HostCapsObj.CapsObjectPath + "0000";
|
||||
|
||||
m_HostCapsObj.RegisterSimpleHandler("SEED", new SimpleStreamHandler(seedcapsBase, SeedCapRequest));
|
||||
// m_log.DebugFormat(
|
||||
@@ -342,7 +342,7 @@ namespace OpenSim.Region.ClientStack.Linden
|
||||
if (m_UserManager != null)
|
||||
{
|
||||
m_HostCapsObj.RegisterSimpleHandler("GetDisplayNames",
|
||||
new SimpleStreamHandler(GetNewCapPath() +"/", GetDisplayNames));
|
||||
new SimpleStreamHandler(GetNewCapPath(), GetDisplayNames));
|
||||
}
|
||||
}
|
||||
catch (Exception e)
|
||||
|
||||
Reference in New Issue
Block a user