Fix for not found i18n directory

This commit is contained in:
Chris Witterholt 2024-04-16 18:19:45 +00:00 committed by Tim Bentley
parent 6498b66698
commit 9b794e4ff8
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ def index(path):
'index.html', mimetype='text/html')
@main_views.route('/assets/<path>')
@main_views.route('/assets/<path:path>')
def assets(path):
return send_from_directory(str(AppLocation.get_section_data_path('remotes') / 'assets'),
path, mimetype=get_mime_type(path))