From 3c557b69a33268cb29ad89910bf57c2b5bc86578 Mon Sep 17 00:00:00 2001 From: Rune Harlyk Date: Mon, 29 Dec 2025 16:09:28 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Expands=20the=20number=20of=20al?= =?UTF-8?q?lowed=20endpoints?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- esp32/src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/esp32/src/main.cpp b/esp32/src/main.cpp index 0976fa3..0af7bd8 100644 --- a/esp32/src/main.cpp +++ b/esp32/src/main.cpp @@ -42,7 +42,7 @@ WiFiService wifiService; APService apService; void setupServer() { - server.config.max_uri_handlers = 32 + WWW_ASSETS_COUNT; + server.config.max_uri_handlers = 50 + WWW_ASSETS_COUNT; server.maxUploadSize = 1000000; // 1 MB; server.listen(80); server.on("/api/features", feature_service::getFeatures);