Fix status exception when no payload
This commit is contained in:
@@ -426,7 +426,7 @@ class TuyaProtocol(asyncio.Protocol):
|
|||||||
async def status(self):
|
async def status(self):
|
||||||
"""Return device status."""
|
"""Return device status."""
|
||||||
status = await self.exchange(STATUS)
|
status = await self.exchange(STATUS)
|
||||||
if "dps" in status:
|
if status and "dps" in status:
|
||||||
self.dps_cache.update(status["dps"])
|
self.dps_cache.update(status["dps"])
|
||||||
return self.dps_cache
|
return self.dps_cache
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user