diff options
Diffstat (limited to 'src/drivers')
| -rw-r--r-- | src/drivers/bluetooth.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/drivers/bluetooth.cpp b/src/drivers/bluetooth.cpp index 3da5dd0c..cba19323 100644 --- a/src/drivers/bluetooth.cpp +++ b/src/drivers/bluetooth.cpp @@ -396,7 +396,7 @@ auto BluetoothState::pairedDevice() -> std::optional<MacAndName> { auto BluetoothState::pairedDevice(std::optional<MacAndName> dev) -> void { auto cur = sPairedWith_; if (dev && cur && dev->mac == cur->mac) { - return; + ESP_LOGI(kTag, "Paired device updated with same value"); } if (dev) { ESP_LOGI(kTag, "pairing with '%s' (%u%u%u%u%u%u)", dev->name.c_str(), |
