mirror of
https://github.com/opensim/opensim.git
synced 2026-08-05 00:46:02 +08:00
Mantis#1797. Thank you kindly, StrawberryFride for a patch that solves:
Shutdown command on region server was presenting an error, failing to send detach region for all regions, and failing to shut down
This commit is contained in:
@@ -206,7 +206,7 @@ namespace OpenSim.Region.Communications.OGS1
|
||||
// Hashtable griddatahash = GridRespData;
|
||||
|
||||
// Process Response
|
||||
if (GridRespData.ContainsKey("error"))
|
||||
if (GridRespData != null && GridRespData.ContainsKey("error"))
|
||||
{
|
||||
string errorstring = (string)GridRespData["error"];
|
||||
m_log.Error("Unable to connect to grid: " + errorstring);
|
||||
|
||||
Reference in New Issue
Block a user