[esp32_ble_client] Fix wrong union member in OPEN_EVT handler (#15236)

This commit is contained in:
Jonathan Swoboda
2026-03-27 08:37:33 -10:00
committed by GitHub
parent 0a607b9c93
commit 4b9467cd0c
@@ -350,7 +350,7 @@ bool BLEClientBase::gattc_event_handler(esp_gattc_cb_event_t event, esp_gatt_if_
// For V3_WITHOUT_CACHE, we already set fast params before connecting
// No need to update them again here
this->log_event_("Searching for services");
esp_ble_gattc_search_service(esp_gattc_if, param->cfg_mtu.conn_id, nullptr);
esp_ble_gattc_search_service(esp_gattc_if, param->open.conn_id, nullptr);
break;
}
case ESP_GATTC_CONNECT_EVT: {