Fixed a small XmlRpcCommand bug
parent
39f340e687
commit
56dfa4e6da
|
@ -618,7 +618,10 @@ namespace OpenSim
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public virtual void Shutdown()
|
public virtual void Shutdown()
|
||||||
{
|
{
|
||||||
Util.XmlRpcCommand(proxyUrl, "Stop");
|
if (proxyUrl.Length > 0)
|
||||||
|
{
|
||||||
|
Util.XmlRpcCommand(proxyUrl, "Stop");
|
||||||
|
}
|
||||||
|
|
||||||
if (m_startupCommandsFile != String.Empty)
|
if (m_startupCommandsFile != String.Empty)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue