Explorar el Código

[fix] rss feed : the jinja template was not found when the rss feed returns an valid feed including an error.

Alexandre Flament hace 7 años
padre
commit
87f673336f
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  1. 2
    1
      searx/webapp.py

+ 2
- 1
searx/webapp.py Ver fichero

@@ -427,7 +427,8 @@ def index_error(output_format, error_message):
427 427
             q=request.form['q'] if 'q' in request.form else '',
428 428
             number_of_results=0,
429 429
             base_url=get_base_url(),
430
-            error_message=error_message
430
+            error_message=error_message,
431
+            override_theme='__common__',
431 432
         )
432 433
         return Response(response_rss, mimetype='text/xml')
433 434
     else: