diff options
author | Diva Canto | 2016-06-22 15:39:09 -0700 |
---|---|---|
committer | Diva Canto | 2016-06-22 15:39:09 -0700 |
commit | 94616510f28089e5fcae6e78adcc392a1789c92c (patch) | |
tree | 5c347425503852bd6d4591da0c8b9fab3745851a /OpenSim/Services | |
parent | Make a debug message less misleading. (diff) | |
download | opensim-SC_OLD-94616510f28089e5fcae6e78adcc392a1789c92c.zip opensim-SC_OLD-94616510f28089e5fcae6e78adcc392a1789c92c.tar.gz opensim-SC_OLD-94616510f28089e5fcae6e78adcc392a1789c92c.tar.bz2 opensim-SC_OLD-94616510f28089e5fcae6e78adcc392a1789c92c.tar.xz |
Missing AsBoolean
Diffstat (limited to 'OpenSim/Services')
-rw-r--r-- | OpenSim/Services/Connectors/Simulation/SimulationServiceConnector.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Services/Connectors/Simulation/SimulationServiceConnector.cs b/OpenSim/Services/Connectors/Simulation/SimulationServiceConnector.cs index 89a47fe..bd8c278 100644 --- a/OpenSim/Services/Connectors/Simulation/SimulationServiceConnector.cs +++ b/OpenSim/Services/Connectors/Simulation/SimulationServiceConnector.cs | |||
@@ -331,7 +331,7 @@ namespace OpenSim.Services.Connectors.Simulation | |||
331 | 331 | ||
332 | // FIXME: If there is a _Result map then it's the success key here that indicates the true success | 332 | // FIXME: If there is a _Result map then it's the success key here that indicates the true success |
333 | // or failure, not the sibling result node. | 333 | // or failure, not the sibling result node. |
334 | success = data["success"]; | 334 | success = data["success"].AsBoolean(); |
335 | 335 | ||
336 | reason = data["reason"].AsString(); | 336 | reason = data["reason"].AsString(); |
337 | // We will need to plumb this and start sing the outbound version as well | 337 | // We will need to plumb this and start sing the outbound version as well |