Explorar el Código

[fix] opensearch xml mimetype - #184

Adam Tauber hace 10 años
padre
commit
8cd7617054
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1
    1
      searx/webapp.py

+ 1
- 1
searx/webapp.py Ver fichero

@@ -638,7 +638,7 @@ def opensearch():
638 638
 
639 639
     resp = Response(response=ret,
640 640
                     status=200,
641
-                    mimetype="application/xml")
641
+                    mimetype="text/xml")
642 642
     return resp
643 643
 
644 644