Skip to content

Commit

Permalink
Fixed authentication error
Browse files Browse the repository at this point in the history
Caused by language being sent as a string
  • Loading branch information
sockless-coding committed Dec 14, 2023
1 parent e81e572 commit 3570551
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion custom_components/panasonic_cc/pcomfortcloud/session.py
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ def _create_token(self):

payload = {
"clientId": self._settings.clientId,
"language": "0",
"language": 0,
"loginId": self._username,
"password": self._password
}
Expand Down

0 comments on commit 3570551

Please sign in to comment.