aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--OpenSim/Server/Handlers/Simulation/AgentHandlers.cs4
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