mirror of
https://github.com/esphome/esphome.git
synced 2025-10-12 23:03:46 +01:00
copilot review comments
This commit is contained in:
@@ -192,13 +192,16 @@ void BLEServer::add_client_(uint16_t conn_id) {
|
||||
// Add if there's space
|
||||
if (this->client_count_ < USE_ESP32_BLE_MAX_CONNECTIONS) {
|
||||
this->clients_[this->client_count_++] = conn_id;
|
||||
} else {
|
||||
// This should never happen since max clients is known at compile time
|
||||
ESP_LOGE(TAG, "Client array full");
|
||||
}
|
||||
}
|
||||
|
||||
void BLEServer::remove_client_(uint16_t conn_id) {
|
||||
int8_t index = this->find_client_index_(conn_id);
|
||||
if (index >= 0) {
|
||||
// Replace with last element and decrement count
|
||||
// Replace with last element and decrement count (client order not preserved)
|
||||
this->clients_[index] = this->clients_[--this->client_count_];
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user