Browse Source

Revert "[fix] return correct favicon path"

This fixes https://github.com/searxng/searxng/issues/1057
This reverts commit f99d109ceb0692d70e473b6f6eb6ab8c53bd5346.
Émilien Devos 3 years ago
parent
commit
cad3d93fa2
1 changed files with 1 additions and 1 deletions
  1. 1 1
      searx/templates/oscar/macros.html

+ 1 - 1
searx/templates/oscar/macros.html

@@ -5,7 +5,7 @@
 
 <!-- Draw favicon -->
 {% macro draw_favicon(favicon) -%}
-    <img width="32" height="32" class="favicon" src="{{ url_for('static', filename='img/icons/' + favicon + '.png') }}" alt="{{ favicon }}" />
+    <img width="32" height="32" class="favicon" src="{{ url_for('static', filename='themes/oscar/img/icons/' + favicon + '.png') }}" alt="{{ favicon }}" />
 {%- endmacro %}
 
 {%- macro result_link(url, title, classes='', id='') -%}