From f8bec0813d72a88db7c9a8b6e84e1ab4dcaedbe5 Mon Sep 17 00:00:00 2001 From: kbx81 Date: Fri, 13 Mar 2026 16:48:56 -0500 Subject: [PATCH] fix --- esphome/components/api/api_connection.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/esphome/components/api/api_connection.h b/esphome/components/api/api_connection.h index 07d58da924..b454b3595a 100644 --- a/esphome/components/api/api_connection.h +++ b/esphome/components/api/api_connection.h @@ -183,7 +183,7 @@ class APIConnection final : public APIServerConnectionBase { #ifdef USE_ZIGBEE_PROXY void on_zigbee_proxy_frame(const ZigbeeProxyFrame &msg) override; void on_zigbee_proxy_request(const ZigbeeProxyRequest &msg) override; - void send_zigbee_proxy_frame(const ZigbeeProxyFrame &msg) { this->send_message(msg, ZigbeeProxyFrame::MESSAGE_TYPE); } + void send_zigbee_proxy_frame(const ZigbeeProxyFrame &msg) { this->send_message(msg); } #endif #ifdef USE_ALARM_CONTROL_PANEL