fix: add fallback handling for undefined config key in settings loader

This commit is contained in:
retoor 2024-11-26 05:46:42 +00:00
parent ceb60be646
commit 48a252610b

View File

@ -292,7 +292,7 @@ def create_app(
[ [
web.get("/", handle_index), web.get("/", handle_index),
web.post("/upload", handle_upload), web.post("/upload", handle_upload),
web.static("/uploads", upload_path), web.static("/", upload_path),
] ]
) )
return app return app