1
0

hw DeviceMgr: don't filter already paired devices in wizard

Related to prev commit: multiple (compatible) keystores can now match
with the same HardwareClientBase, so we might as well also allow
reusing existing Clients for the wizard.
This commit is contained in:
SomberNight
2022-12-19 13:08:27 +00:00
parent cea4238b81
commit a4276102f2
3 changed files with 16 additions and 11 deletions

View File

@@ -193,7 +193,7 @@ def get_connected_hw_devices(plugins: 'Plugins'):
_logger.error(f"{name}: error during plugin init: {repr(e)}")
continue
try:
u = devmgr.unpaired_device_infos(None, plugin)
u = devmgr.list_pairable_device_infos(handler=None, plugin=plugin)
except Exception as e:
_logger.error(f'error getting device infos for {name}: {repr(e)}')
continue