We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 998d833 commit 9319c81Copy full SHA for 9319c81
plugwise_usb/network/__init__.py
@@ -481,7 +481,9 @@ async def _load_discovered_nodes(self) -> bool:
481
_LOGGER.debug("_load_discovered_nodes | load_result=%s", load_result)
482
result_index = 0
483
for mac in nodes_not_loaded:
484
- if not load_result[result_index]:
+ if load_result[result_index]:
485
+ await self._notify_node_event_subscribers(NodeEvent.LOADED, mac)
486
+ else:
487
_LOGGER.debug(
488
"_load_discovered_nodes | Load request for %s failed", mac
489
)
0 commit comments