From 9b794e4ff899434f150b92ed279b6295743f5aa5 Mon Sep 17 00:00:00 2001 From: Chris Witterholt Date: Tue, 16 Apr 2024 18:19:45 +0000 Subject: [PATCH] Fix for not found i18n directory --- openlp/core/api/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openlp/core/api/main.py b/openlp/core/api/main.py index 37a2f449e..e5899b723 100644 --- a/openlp/core/api/main.py +++ b/openlp/core/api/main.py @@ -39,7 +39,7 @@ def index(path): 'index.html', mimetype='text/html') -@main_views.route('/assets/') +@main_views.route('/assets/') def assets(path): return send_from_directory(str(AppLocation.get_section_data_path('remotes') / 'assets'), path, mimetype=get_mime_type(path))