diff options
| author | Adam Tauber <asciimoo@gmail.com> | 2015-01-18 14:26:52 +0100 |
|---|---|---|
| committer | Adam Tauber <asciimoo@gmail.com> | 2015-01-18 14:26:52 +0100 |
| commit | 8cd7617054d5290cc02a1d2ee08703e10d6e7f28 (patch) | |
| tree | 352f16be10b17f1283a29616540c50600a6b7632 | |
| parent | 285f991cd078db7df5622e3109984f1f3c651988 (diff) | |
[fix] opensearch xml mimetype - #184
| -rw-r--r-- | searx/webapp.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/webapp.py b/searx/webapp.py index e25156f40..7c3eddee8 100644 --- a/searx/webapp.py +++ b/searx/webapp.py @@ -638,7 +638,7 @@ def opensearch(): resp = Response(response=ret, status=200, - mimetype="application/xml") + mimetype="text/xml") return resp |