Merge branch 'fix-for-not-found-i18n-directory' into 'master'

Fix for not found i18n directory

See merge request openlp/openlp!739
This commit is contained in:
Tim Bentley 2024-04-16 18:19:45 +00:00
commit 62d6b61518
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))