* Stop converting serviceURL to all lower case.
* Thanks mcortez
This commit is contained in:
Justin Clarke Casey
2009-04-29 18:14:34 +00:00
parent af73bcd363
commit 978f98fe7e

View File

@@ -64,7 +64,7 @@ namespace OpenSim.Region.OptionalModules.Avatar.XmlRpcGroups
public XmlRpcGroupDataProvider(string serviceURL, bool disableKeepAlive)
{
m_serviceURL = serviceURL.Trim().ToLower();
m_serviceURL = serviceURL.Trim();
m_disableKeepAlive = disableKeepAlive;
if ((serviceURL == null) ||