Fixed a small XmlRpcCommand bug

0.6.0-stable
Johan Berntsson 2008-03-24 03:03:21 +00:00
parent 39f340e687
commit 56dfa4e6da
1 changed files with 4 additions and 1 deletions

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)
{