Skip to content

Commit

Permalink
fixing websockets
Browse files Browse the repository at this point in the history
  • Loading branch information
catduckgnaf authored Jan 21, 2024
1 parent c8d2a59 commit e685403
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion custom_components/ryobi_gdo/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -571,7 +571,7 @@ async def websocket_subscribe(self) -> None:
async def websocket_send(self, message: dict) -> bool:
"""Send websocket message."""
json_message = json.dumps(message)
LOGGER.debug("Websocket sending data: %s", self.redact_api_key(json_message))
return json.dumps(message)

try:
await self._ws_client.send_str(json_message)
Expand Down

0 comments on commit e685403

Please sign in to comment.