1
0
mirror of https://github.com/esphome/esphome.git synced 2025-09-02 19:32:19 +01:00

[esp32_ble_client] Add missing ESP_GATTC_UNREG_FOR_NOTIFY_EVT logging

This commit is contained in:
J. Nick Koston
2025-08-20 20:25:50 -05:00
parent a6850786e2
commit 4dd01ea9ac

View File

@@ -485,8 +485,6 @@ bool BLEClientBase::gattc_event_handler(esp_gattc_cb_event_t event, esp_gatt_if_
}
case ESP_GATTC_UNREG_FOR_NOTIFY_EVT: {
if (this->conn_id_ != param->unreg_for_notify.conn_id)
return false;
this->log_gattc_event_("UNREG_FOR_NOTIFY");
break;
}