From 9e091142640054e9e2087e4285aa81e4e20279b9 Mon Sep 17 00:00:00 2001 From: ThoNohT Date: Wed, 17 Jun 2026 17:34:07 +0200 Subject: [PATCH] One more missing parameter for build_path --- src/get_handler.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/get_handler.c b/src/get_handler.c index cef849f..77e08d9 100644 --- a/src/get_handler.c +++ b/src/get_handler.c @@ -1,6 +1,6 @@ static enum MHD_Result handle_get(struct MHD_Connection *connection, SV url, Settings settings, SV username) { noh_arena_save(&temp); - Noh_String fs_path = build_path(false, &settings.base_path, &username, &url); + Noh_String fs_path = build_path(false, false, &settings.base_path, &username, &url); noh_log(NOH_INFO, "Physical path: "Nsv_Fmt, Nsv_Arg(fs_path));