summaryrefslogtreecommitdiff
path: root/indra/llmessage
diff options
context:
space:
mode:
Diffstat (limited to 'indra/llmessage')
-rw-r--r--indra/llmessage/llhttpclient.cpp9
1 files changed, 6 insertions, 3 deletions
diff --git a/indra/llmessage/llhttpclient.cpp b/indra/llmessage/llhttpclient.cpp
index 5bf0c08e67..618d99dc48 100644
--- a/indra/llmessage/llhttpclient.cpp
+++ b/indra/llmessage/llhttpclient.cpp
@@ -252,10 +252,13 @@ static void request(
// Check to see if we have already set Accept or not. If no one
// set it, set it to application/llsd+xml since that's what we
// almost always want.
- static const std::string ACCEPT("Accept");
- if(!headers.has(ACCEPT))
+ if( method != LLURLRequest::HTTP_PUT && method != LLURLRequest::HTTP_POST )
{
- req->addHeader("Accept: application/llsd+xml");
+ static const std::string ACCEPT("Accept");
+ if(!headers.has(ACCEPT))
+ {
+ req->addHeader("Accept: application/llsd+xml");
+ }
}
req->setCallback(new LLHTTPClientURLAdaptor(responder));