Allow v1 connections to receive searching results.

This commit is contained in:
Jesse Hills 2023-06-27 15:19:10 +12:00
parent d9398a91d1
commit 72ff2cfa68
No known key found for this signature in database
GPG Key ID: BEAAE804EFD8E83A
1 changed files with 5 additions and 1 deletions

View File

@ -57,7 +57,11 @@ bool BluetoothProxy::parse_devices(esp_ble_gap_cb_param_t::ble_scan_result_evt_p
}
ESP_LOGV(TAG, "Proxying %d packets", count);
this->api_connection_->send_bluetooth_le_raw_advertisements_response(resp);
return true;
bool searching = false;
for (auto *conn : this->connections_) {
searching |= conn->state() == espbt::ClientState::SEARCHING;
}
return !searching;
}
void BluetoothProxy::send_api_packet_(const esp32_ble_tracker::ESPBTDevice &device) {
api::BluetoothLEAdvertisementResponse resp;