diff --git a/src/web/WebStatusService.cpp b/src/web/WebStatusService.cpp index 1fffc5881..1a705f17f 100644 --- a/src/web/WebStatusService.cpp +++ b/src/web/WebStatusService.cpp @@ -173,10 +173,6 @@ void WebStatusService::action(AsyncWebServerRequest * request, JsonVariant json) ok = uploadURL(param.c_str()); } -#if defined(EMSESP_UNITY) - // store the result so we can test with Unity later - storeResponse(output); -#endif #if defined(EMSESP_STANDALONE) && !defined(EMSESP_UNITY) Serial.printf("%sweb output: %s[%s]", COLOR_WHITE, COLOR_BRIGHT_CYAN, request->url().c_str()); Serial.printf(" %s(%d)%s ", ok ? COLOR_BRIGHT_GREEN : COLOR_BRIGHT_RED, ok ? 200 : 400, COLOR_YELLOW);