forked from Icycoide/searxng
[fix] static content paths
This commit is contained in:
parent
2f9a386c0d
commit
798bef77f9
5 changed files with 6 additions and 6 deletions
|
@ -73,7 +73,7 @@ babel = Babel(app)
|
|||
global_favicons = []
|
||||
for indice, theme in enumerate(themes):
|
||||
global_favicons.append([])
|
||||
theme_img_path = searx_dir+"/static/"+theme+"/img/icons/"
|
||||
theme_img_path = searx_dir+"/static/themes/"+theme+"/img/icons/"
|
||||
for (dirpath, dirnames, filenames) in os.walk(theme_img_path):
|
||||
global_favicons[indice].extend(filenames)
|
||||
|
||||
|
@ -506,7 +506,7 @@ def opensearch():
|
|||
@app.route('/favicon.ico')
|
||||
def favicon():
|
||||
return send_from_directory(os.path.join(app.root_path,
|
||||
'static',
|
||||
'static/themes',
|
||||
get_current_theme_name(),
|
||||
'img'),
|
||||
'favicon.png',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue