From 4096c943ccfbc94ee86a1e3ce4635a4183d71289 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Tue, 13 May 2025 21:08:59 -0500 Subject: [PATCH] cleanup --- esphome/components/api/api_connection.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/esphome/components/api/api_connection.cpp b/esphome/components/api/api_connection.cpp index fea24aa32a..9f5297fdeb 100644 --- a/esphome/components/api/api_connection.cpp +++ b/esphome/components/api/api_connection.cpp @@ -1553,7 +1553,7 @@ bool APIConnection::try_to_clear_buffer(bool log_out_of_space) { if (log_out_of_space) { ESP_LOGV(TAG, "Cannot send message because of TCP buffer space"); } - delay(0); + delay(0); // Not sure this makes sense, but it is in the original code return false; } bool APIConnection::send_buffer(ProtoWriteBuffer buffer, uint32_t message_type) {