From 6d62b00c0e6acc1cbedd39b5e4fc0f91d56e0710 Mon Sep 17 00:00:00 2001 From: Niklas Jensen Date: Thu, 29 Jan 2026 11:38:46 +0100 Subject: [PATCH] Fixed custom url matcher --- esp32/src/communication/webserver.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/esp32/src/communication/webserver.cpp b/esp32/src/communication/webserver.cpp index fc0f903..e8a697c 100644 --- a/esp32/src/communication/webserver.cpp +++ b/esp32/src/communication/webserver.cpp @@ -22,6 +22,7 @@ void WebServer::config(size_t maxUriHandlers, size_t stackSize) { config_.stack_size = stackSize; config_.max_resp_headers = 16; config_.lru_purge_enable = true; + config_.uri_match_fn = httpd_uri_match_wildcard; } esp_err_t WebServer::listen(uint16_t port) {