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 e18cded commit 7821b13Copy full SHA for 7821b13
plugwise_usb/network/__init__.py
@@ -297,6 +297,12 @@ def _unsubscribe_to_protocol_events(self) -> None:
297
if self._unsubscribe_node_awake is not None:
298
self._unsubscribe_node_awake()
299
self._unsubscribe_node_awake = None
300
+ if self._unsubscribe_node_join is not None:
301
+ self._unsubscribe_node_join()
302
+ self._unsubscribe_node_join = None
303
+ if self._unsubscribe_node_rejoin is not None:
304
+ self._unsubscribe_node_rejoin()
305
+ self._unsubscribe_node_rejoin = None
306
if self._unsubscribe_stick_event is not None:
307
self._unsubscribe_stick_event()
308
self._unsubscribe_stick_event = None
0 commit comments