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 b19139b commit c59a2c0Copy full SHA for c59a2c0
roborock/protocols/v1_protocol.py
@@ -157,7 +157,7 @@ def decode_rpc_response(message: RoborockMessage) -> ResponseMessage:
157
exc = RoborockException(error)
158
if "result" not in data_point_response:
159
exc = RoborockException(f"Invalid V1 message format: missing 'result' in data point for {message.payload!r}")
160
- result = None
+ result = {}
161
else:
162
result = data_point_response["result"]
163
_LOGGER.debug("Decoded V1 message result: %s", result)
0 commit comments