From dd4bfc7b0b472f8b03dc1203b1e2e6f024296d0f Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Wed, 21 Jan 2026 12:52:39 -1000 Subject: [PATCH] unify, make consistant --- esphome/components/http_request/http_request_idf.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/esphome/components/http_request/http_request_idf.cpp b/esphome/components/http_request/http_request_idf.cpp index 5bb08bf626..583c9b5e19 100644 --- a/esphome/components/http_request/http_request_idf.cpp +++ b/esphome/components/http_request/http_request_idf.cpp @@ -218,7 +218,7 @@ std::shared_ptr HttpRequestIDF::perform(const std::string &url, c // esp_http_client_read() in async mode returns: // > 0: bytes read // 0: connection closed (end of stream) <-- BSD socket EOF semantics -// -ESP_ERR_HTTP_EAGAIN (0x7007): no data available yet (would block) +// -ESP_ERR_HTTP_EAGAIN: no data available yet (would block) // other negative: error // // We normalize to HttpContainer::read() contract (NOT BSD socket semantics!):