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 ac0dbdd commit 0b18494Copy full SHA for 0b18494
custom_components/robovac/tuyalocalapi.py
@@ -741,6 +741,9 @@ async def async_disconnect(self):
741
if self.writer is not None:
742
self.writer.close()
743
744
+ if self.reader is not None and not self.reader.at_eof():
745
+ self.reader.feed_eof()
746
+
747
async def async_get(self):
748
payload = {"gwId": self.gateway_id, "devId": self.device_id}
749
encrypt = False if self.version < (3, 3) else True
0 commit comments