We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f850cd1 commit 462d4e4Copy full SHA for 462d4e4
1 file changed
roborock/cloud_api.py
@@ -124,7 +124,7 @@ def sync_connect(self) -> bool:
124
if self._mqtt_port is None or self._mqtt_host is None:
125
raise RoborockException("Mqtt information was not entered. Cannot connect.")
126
_LOGGER.info("Connecting to mqtt")
127
- super().connect_async(host=self._mqtt_host, port=self._mqtt_port, keepalive=KEEPALIVE)
+ super().connect(host=self._mqtt_host, port=self._mqtt_port, keepalive=KEEPALIVE)
128
return True
129
return False
130
0 commit comments