Fix parameter to BLEDevice::updatePeerDevice (#4133)
::addPeerDevice and ::removePeerDevice are called with m_appId, so should ::updatePeerDevice as all use the same parameter for the underlying map's key.
This commit is contained in:
parent
704b71dabe
commit
9f7ff009c6
@ -237,7 +237,7 @@ void BLEClient::gattClientEventHandler(
|
|||||||
|
|
||||||
case ESP_GATTC_CONNECT_EVT: {
|
case ESP_GATTC_CONNECT_EVT: {
|
||||||
if (evtParam->connect.conn_id != getConnId()) break;
|
if (evtParam->connect.conn_id != getConnId()) break;
|
||||||
BLEDevice::updatePeerDevice(this, true, m_gattc_if);
|
BLEDevice::updatePeerDevice(this, true, m_appId);
|
||||||
esp_err_t errRc = esp_ble_gattc_send_mtu_req(gattc_if, evtParam->connect.conn_id);
|
esp_err_t errRc = esp_ble_gattc_send_mtu_req(gattc_if, evtParam->connect.conn_id);
|
||||||
if (errRc != ESP_OK) {
|
if (errRc != ESP_OK) {
|
||||||
log_e("esp_ble_gattc_send_mtu_req: rc=%d %s", errRc, GeneralUtils::errorToString(errRc));
|
log_e("esp_ble_gattc_send_mtu_req: rc=%d %s", errRc, GeneralUtils::errorToString(errRc));
|
||||||
|
Loading…
Reference in New Issue
Block a user