diff options
Diffstat (limited to 'OpenSim/Region/Application')
-rw-r--r-- | OpenSim/Region/Application/OpenSimMain.cs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/OpenSim/Region/Application/OpenSimMain.cs b/OpenSim/Region/Application/OpenSimMain.cs index 35f146d..6510eea 100644 --- a/OpenSim/Region/Application/OpenSimMain.cs +++ b/OpenSim/Region/Application/OpenSimMain.cs | |||
@@ -618,7 +618,10 @@ namespace OpenSim | |||
618 | /// </summary> | 618 | /// </summary> |
619 | public virtual void Shutdown() | 619 | public virtual void Shutdown() |
620 | { | 620 | { |
621 | Util.XmlRpcCommand(proxyUrl, "Stop"); | 621 | if (proxyUrl.Length > 0) |
622 | { | ||
623 | Util.XmlRpcCommand(proxyUrl, "Stop"); | ||
624 | } | ||
622 | 625 | ||
623 | if (m_startupCommandsFile != String.Empty) | 626 | if (m_startupCommandsFile != String.Empty) |
624 | { | 627 | { |