diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Server/Handlers/Simulation/AgentHandlers.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Server/Handlers/Simulation/AgentHandlers.cs b/OpenSim/Server/Handlers/Simulation/AgentHandlers.cs index ce0e120..f912758 100644 --- a/OpenSim/Server/Handlers/Simulation/AgentHandlers.cs +++ b/OpenSim/Server/Handlers/Simulation/AgentHandlers.cs | |||
@@ -233,7 +233,7 @@ namespace OpenSim.Server.Handlers.Simulation | |||
233 | Encoding encoding = Encoding.UTF8; | 233 | Encoding encoding = Encoding.UTF8; |
234 | 234 | ||
235 | Stream inputStream = null; | 235 | Stream inputStream = null; |
236 | if (httpRequest.ContentType == "application/x-gzip") | 236 | if ((httpRequest.ContentType == "application/x-gzip" || httpRequest.Headers["Content-Encoding"] == "gzip") || (httpRequest.Headers["X-Content-Encoding"] == "gzip")) |
237 | inputStream = new GZipStream(request, CompressionMode.Decompress); | 237 | inputStream = new GZipStream(request, CompressionMode.Decompress); |
238 | else if (httpRequest.ContentType == "application/json") | 238 | else if (httpRequest.ContentType == "application/json") |
239 | inputStream = request; | 239 | inputStream = request; |