Skip to content

Commit 6a20e27

Browse files
authored
fix: Fix diagnostic data redaction to use camelized keys (#669)
The redaction list doesn't have the right format for some of the keys.
1 parent 5f4c14e commit 6a20e27

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

roborock/devices/device.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -235,9 +235,9 @@ def diagnostic_data(self) -> dict[str, Any]:
235235
"h",
236236
"k",
237237
# Large binary blobs are entirely omitted
238-
"image_content",
239-
"map_data",
240-
"raw_api_response",
238+
"imageContent",
239+
"mapData",
240+
"rawApiResponse",
241241
}
242242
REDACTED = "**REDACTED**"
243243

0 commit comments

Comments
 (0)