Fixed a small XmlRpcCommand bug

This commit is contained in:
Johan Berntsson
2008-03-24 03:03:21 +00:00
parent 39f340e687
commit 56dfa4e6da

View File

@@ -618,7 +618,10 @@ namespace OpenSim
/// </summary>
public virtual void Shutdown()
{
Util.XmlRpcCommand(proxyUrl, "Stop");
if (proxyUrl.Length > 0)
{
Util.XmlRpcCommand(proxyUrl, "Stop");
}
if (m_startupCommandsFile != String.Empty)
{