Skip to content

Commit 3a56a74

Browse files
authored
Merge pull request #348 from plugwise/fix-joining-bw
Fix auto-joining not functioning as intended
2 parents c0f1c33 + 13defa7 commit 3a56a74

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
- PR [337](https://github.com/plugwise/python-plugwise-usb/pull/337): Improve node removal, remove and reset the node as executed by Source, and remove the cache-file.
66
- PR [342](https://github.com/plugwise/python-plugwise-usb/pull/342): Improve node_type chaching.
77
- PR [343](https://github.com/plugwise/python-plugwise-usb/pull/343): Improve writing of cache-files.
8-
- PR [344](https://github.com/plugwise/python-plugwise-usb/pull/344): Don't store plus-device in nodetypes cache
8+
- PR [344](https://github.com/plugwise/python-plugwise-usb/pull/344): Don't store plus-device in nodetypes cache.
9+
- PR [348](https://github.com/plugwise/python-plugwise-usb/pull/348): Fix broken auto-joining.
910

1011
## 0.46.0 - 2025-09-12
1112

plugwise_usb/network/registry.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -263,8 +263,6 @@ async def register_node(self, mac: str) -> None:
263263
await request.send()
264264
except StickError as exc:
265265
raise NodeError(f"{exc}") from exc
266-
if self.update_network_registration(mac):
267-
await self._exec_node_discover_callback(mac, None, False)
268266

269267
async def unregister_node(self, node: PlugwiseNode) -> None:
270268
"""Unregister node from current Plugwise network."""

0 commit comments

Comments
 (0)