Skip to content

Commit 5719970

Browse files
committed
Fix
1 parent c516997 commit 5719970

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugwise_usb/network/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ async def node_rejoin_message(self, response: PlugwiseResponse) -> bool:
271271
)
272272
mac = response.mac_decoded
273273
if (address := self._register.network_address(mac)) is None:
274-
if (address := self.register_rejoined_node(mac)) is None:
274+
if (address := self._register.register_rejoined_node(mac)) is None:
275275
raise NodeError(f"Failed to obtain address for node {mac}")
276276

277277
if self._nodes.get(mac) is None:

0 commit comments

Comments
 (0)