diff options
-rw-r--r-- | OpenSim/Region/Communications/OGS1/OGS1GridServices.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Communications/OGS1/OGS1GridServices.cs b/OpenSim/Region/Communications/OGS1/OGS1GridServices.cs index d8a6daf..a2cddec 100644 --- a/OpenSim/Region/Communications/OGS1/OGS1GridServices.cs +++ b/OpenSim/Region/Communications/OGS1/OGS1GridServices.cs | |||
@@ -206,7 +206,7 @@ namespace OpenSim.Region.Communications.OGS1 | |||
206 | // Hashtable griddatahash = GridRespData; | 206 | // Hashtable griddatahash = GridRespData; |
207 | 207 | ||
208 | // Process Response | 208 | // Process Response |
209 | if (GridRespData.ContainsKey("error")) | 209 | if (GridRespData != null && GridRespData.ContainsKey("error")) |
210 | { | 210 | { |
211 | string errorstring = (string)GridRespData["error"]; | 211 | string errorstring = (string)GridRespData["error"]; |
212 | m_log.Error("Unable to connect to grid: " + errorstring); | 212 | m_log.Error("Unable to connect to grid: " + errorstring); |