diff options
author | Teravus Ovares | 2008-09-23 19:28:24 +0000 |
---|---|---|
committer | Teravus Ovares | 2008-09-23 19:28:24 +0000 |
commit | 0651efaafa98b901837356d93f8bcc4d9bf84584 (patch) | |
tree | 9c499fb275ef555ce0082fb08f770f15d567c08c /OpenSim | |
parent | remove the bamboo line to see if this fixes things (diff) | |
download | opensim-SC_OLD-0651efaafa98b901837356d93f8bcc4d9bf84584.zip opensim-SC_OLD-0651efaafa98b901837356d93f8bcc4d9bf84584.tar.gz opensim-SC_OLD-0651efaafa98b901837356d93f8bcc4d9bf84584.tar.bz2 opensim-SC_OLD-0651efaafa98b901837356d93f8bcc4d9bf84584.tar.xz |
* OGP GET, look for Accept header application/llsd+xml with an optional ?q=
Diffstat (limited to 'OpenSim')
-rw-r--r-- | OpenSim/Framework/Servers/BaseHttpServer.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Framework/Servers/BaseHttpServer.cs b/OpenSim/Framework/Servers/BaseHttpServer.cs index 4fef477..a0e71a4 100644 --- a/OpenSim/Framework/Servers/BaseHttpServer.cs +++ b/OpenSim/Framework/Servers/BaseHttpServer.cs | |||
@@ -394,7 +394,7 @@ namespace OpenSim.Framework.Servers | |||
394 | { | 394 | { |
395 | foreach (string strAccept in request.AcceptTypes) | 395 | foreach (string strAccept in request.AcceptTypes) |
396 | { | 396 | { |
397 | if (strAccept == "application/llsd+xml") | 397 | if (strAccept.Contains("application/llsd+xml")) |
398 | { | 398 | { |
399 | HandleLLSDRequests(request, response); | 399 | HandleLLSDRequests(request, response); |
400 | return; | 400 | return; |