Skip to content
Snippets Groups Projects
Unverified Commit 93a8aef4 authored by Jc2k's avatar Jc2k Committed by GitHub
Browse files

Fix async_all_discovered_devices(False) to return connectable and unconnectable devices (#77670)

parent d65eaf11
No related branches found
No related tags found
No related merge requests found
......@@ -221,10 +221,14 @@ class BluetoothManager:
@hass_callback
def async_all_discovered_devices(self, connectable: bool) -> Iterable[BLEDevice]:
"""Return all of discovered devices from all the scanners including duplicates."""
return itertools.chain.from_iterable(
scanner.discovered_devices
for scanner in self._get_scanners_by_type(connectable)
yield from itertools.chain.from_iterable(
scanner.discovered_devices for scanner in self._get_scanners_by_type(True)
)
if not connectable:
yield from itertools.chain.from_iterable(
scanner.discovered_devices
for scanner in self._get_scanners_by_type(False)
)
@hass_callback
def async_discovered_devices(self, connectable: bool) -> list[BLEDevice]:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment