From 3ac1ef78c2f2f408e253883a7bfe23ee91ba209d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20Balv=C3=ADn?= Date: Wed, 22 Jul 2026 21:22:08 +0200 Subject: [PATCH] fix: icon path and config.toml structure --- src/volumen/admin_routes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/volumen/admin_routes.py b/src/volumen/admin_routes.py index 1d09e12..b4dea13 100644 --- a/src/volumen/admin_routes.py +++ b/src/volumen/admin_routes.py @@ -46,7 +46,7 @@ media_router = APIRouter(prefix="/media") # Static logo / icon served from the web/public directory. _PKG_DIR = Path(__file__).resolve().parent -_PUBLIC_DIR = _PKG_DIR.parent / "lib" / "volumen" / "web" / "public" +_PUBLIC_DIR = _PKG_DIR / "web" / "static" # ============================================================================