mirror of
https://github.com/opensim/opensim.git
synced 2026-08-05 00:46:02 +08:00
remove some '/' just wasting space
This commit is contained in:
@@ -95,7 +95,7 @@ namespace OpenSim.Region.ClientStack.LindenCaps
|
||||
|
||||
public void RegisterCaps(UUID agent, Caps caps)
|
||||
{
|
||||
string capPath = "/" + UUID.Random().ToString() + "/";
|
||||
string capPath = "/" + UUID.Random().ToString();
|
||||
caps.RegisterSimpleHandler("AgentPreferences",
|
||||
new SimpleStreamHandler(capPath, delegate(IOSHttpRequest httpRequest, IOSHttpResponse httpResponse)
|
||||
{
|
||||
|
||||
@@ -112,7 +112,7 @@ namespace OpenSim.Region.ClientStack.LindenCaps
|
||||
|
||||
public void RegisterCaps(UUID agentID, Caps caps)
|
||||
{
|
||||
string capPath = "/" + UUID.Random() + "/";
|
||||
string capPath = "/" + UUID.Random();
|
||||
caps.RegisterSimpleHandler("ServerReleaseNotes",
|
||||
new SimpleStreamHandler(capPath, delegate (IOSHttpRequest httpRequest, IOSHttpResponse httpResponse)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user