diff options
Diffstat (limited to 'searx/webapp.py')
-rwxr-xr-x | searx/webapp.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/webapp.py b/searx/webapp.py index 151eb5cc6..83bbeac06 100755 --- a/searx/webapp.py +++ b/searx/webapp.py @@ -1303,7 +1303,7 @@ def opensearch(): def favicon(): theme = request.preferences.get_value("theme") return send_from_directory( - os.path.join(app.root_path, settings['ui']['static_path'], 'themes', theme, 'img'), + os.path.join(app.root_path, settings['ui']['static_path'], 'themes', theme, 'img'), # pyright: ignore 'favicon.png', mimetype='image/vnd.microsoft.icon', ) |