* Stop converting serviceURL to all lower case.
* Thanks mcortez
0.6.5-rc1
Justin Clarke Casey 2009-04-29 18:14:34 +00:00
parent af73bcd363
commit 978f98fe7e
1 changed files with 1 additions and 1 deletions

View File

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