mirror of
https://github.com/opensim/opensim.git
synced 2026-08-06 09:16:28 +08:00
HG: AAdded a few missing /'s at the end of URLs
This commit is contained in:
@@ -53,7 +53,7 @@ namespace OpenSim.Services.Connectors
|
||||
|
||||
public virtual string Helo()
|
||||
{
|
||||
HttpWebRequest req = (HttpWebRequest)HttpWebRequest.Create(m_ServerURI + "/helo");
|
||||
HttpWebRequest req = (HttpWebRequest)HttpWebRequest.Create(m_ServerURI + "/helo/");
|
||||
// Eventually we need to switch to HEAD
|
||||
/* req.Method = "HEAD"; */
|
||||
|
||||
|
||||
@@ -86,6 +86,8 @@ namespace OpenSim.Services.Connectors.SimianGrid
|
||||
|
||||
public SimianAssetServiceConnector(string url)
|
||||
{
|
||||
if (!url.EndsWith("/") && !url.EndsWith("="))
|
||||
url = url + '/';
|
||||
m_serverUrl = url;
|
||||
}
|
||||
|
||||
|
||||
@@ -92,7 +92,10 @@ namespace OpenSim.Services.Connectors.SimianGrid
|
||||
|
||||
public SimianInventoryServiceConnector(string url)
|
||||
{
|
||||
if (!url.EndsWith("/") && !url.EndsWith("="))
|
||||
url = url + '/';
|
||||
m_serverUrl = url;
|
||||
|
||||
}
|
||||
|
||||
public void Initialise(IConfigSource source)
|
||||
|
||||
Reference in New Issue
Block a user