From cd24c7815b798a0a5bf1fd5c17a47bca5aa6f9d5 Mon Sep 17 00:00:00 2001 From: proddy Date: Sun, 5 Oct 2025 15:33:55 +0200 Subject: [PATCH] merge Michael's change --- src/web/WebStatusService.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/web/WebStatusService.cpp b/src/web/WebStatusService.cpp index 0431479b8..a13d99303 100644 --- a/src/web/WebStatusService.cpp +++ b/src/web/WebStatusService.cpp @@ -115,7 +115,7 @@ void WebStatusService::systemStatus(AsyncWebServerRequest * request) { root["max_alloc_heap"] = EMSESP::system_.getMaxAllocMem(); root["arduino_version"] = ARDUINO_VERSION; root["sdk_version"] = ESP.getSdkVersion(); - root["partition"] = esp_ota_get_running_partition()->label; // active partition + root["partition"] = (const char *)esp_ota_get_running_partition()->label; // active partition root["flash_chip_size"] = ESP.getFlashChipSize() / 1024; root["flash_chip_speed"] = ESP.getFlashChipSpeed(); root["app_used"] = EMSESP::system_.appUsed();