This commit is contained in:
J. Nick Koston 2023-11-28 07:37:19 -06:00
parent 9d9754bd85
commit abae92a009
No known key found for this signature in database
1 changed files with 2 additions and 2 deletions

View File

@ -463,8 +463,8 @@ class APIClient:
type(msg) # pylint: disable=unidiomatic-typecheck
is BluetoothDeviceConnectionResponse
):
return msg.address == address
return msg.address == address and msg.handle == handle
return bool(msg.address == address)
return bool(msg.address == address and msg.handle == handle)
async def _send_bluetooth_message_await_response(
self,