From 0d0899b10e38d3b2de1fb19c6b50ee3bd928880e Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Wed, 21 Jan 2026 12:52:15 -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 e01b2ee35c..5bb08bf626 100644 --- a/esphome/components/http_request/http_request_idf.cpp +++ b/esphome/components/http_request/http_request_idf.cpp @@ -247,7 +247,7 @@ int HttpContainerIDF::read(uint8_t *buf, size_t max_len) { } // No data available yet in non-blocking mode - // ESP_ERR_HTTP_EAGAIN (0x7007) is returned as negative + // ESP_ERR_HTTP_EAGAIN is returned as a negative error code if (read_len_or_error == -ESP_ERR_HTTP_EAGAIN) { return 0; // No data yet, caller should retry }