Skip to content

Commit 864c141

Browse files
committed
Fix processing node join request messages
1 parent 12d7e40 commit 864c141

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugwise/stick.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -399,7 +399,7 @@ def message_processor(self, message: NodeResponse):
399399
elif isinstance(message, StickInitResponse):
400400
self._process_stick_init_response(message)
401401
elif isinstance(message, NodeJoinAvailableResponse):
402-
self._process_node_join_request(message)
402+
self._process_node_join_request(message, mac)
403403
elif isinstance(message, NodeRemoveResponse):
404404
self._process_node_remove(message)
405405
else:

0 commit comments

Comments
 (0)