mirror of
https://github.com/opensim/opensim.git
synced 2026-08-07 01:35:46 +08:00
Same processing of the "/" in the MapImageService Cap as the one in the login service.
This commit is contained in:
@@ -66,6 +66,12 @@ namespace OpenSim.Region.ClientStack.Linden
|
||||
return;
|
||||
|
||||
m_MapImageServerURL = config.GetString("Cap_MapImageService", string.Empty);
|
||||
if (m_MapImageServerURL != string.Empty)
|
||||
{
|
||||
m_MapImageServerURL = m_MapImageServerURL.Trim();
|
||||
if (!m_MapImageServerURL.EndsWith("/"))
|
||||
m_MapImageServerURL = m_MapImageServerURL + "/";
|
||||
}
|
||||
}
|
||||
|
||||
public void AddRegion(Scene s)
|
||||
|
||||
Reference in New Issue
Block a user