diff options
author | Diva Canto | 2010-06-30 06:35:22 -0700 |
---|---|---|
committer | Diva Canto | 2010-07-01 07:03:09 -0700 |
commit | bd6859137133325f8fe232aeff61f4e775da6a31 (patch) | |
tree | 9ab9099fb01c232299969a09b345f5d6ea94399f | |
parent | Fix scripts in rezzed objects not starting (Mantis #4775) (diff) | |
download | opensim-SC_OLD-bd6859137133325f8fe232aeff61f4e775da6a31.zip opensim-SC_OLD-bd6859137133325f8fe232aeff61f4e775da6a31.tar.gz opensim-SC_OLD-bd6859137133325f8fe232aeff61f4e775da6a31.tar.bz2 opensim-SC_OLD-bd6859137133325f8fe232aeff61f4e775da6a31.tar.xz |
Removed opportunity for exception in BaseHttpServer. (mantis #4825)
-rw-r--r-- | OpenSim/Server/Handlers/Simulation/AgentHandlers.cs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/OpenSim/Server/Handlers/Simulation/AgentHandlers.cs b/OpenSim/Server/Handlers/Simulation/AgentHandlers.cs index bc31815..d261678 100644 --- a/OpenSim/Server/Handlers/Simulation/AgentHandlers.cs +++ b/OpenSim/Server/Handlers/Simulation/AgentHandlers.cs | |||
@@ -283,6 +283,10 @@ namespace OpenSim.Server.Handlers.Simulation | |||
283 | if (m_SimulationService == null) | 283 | if (m_SimulationService == null) |
284 | { | 284 | { |
285 | m_log.Debug("[AGENT HANDLER]: Agent GET called. Harmless but useless."); | 285 | m_log.Debug("[AGENT HANDLER]: Agent GET called. Harmless but useless."); |
286 | responsedata["content_type"] = "application/json"; | ||
287 | responsedata["int_response_code"] = HttpStatusCode.NotImplemented; | ||
288 | responsedata["str_response_string"] = string.Empty; | ||
289 | |||
286 | return; | 290 | return; |
287 | } | 291 | } |
288 | 292 | ||