Skip to content

Commit

Permalink
Change language parameter from string to int
Browse files Browse the repository at this point in the history
This fixes the issue where tokens fail to renew
  • Loading branch information
martinkaltoft authored Dec 14, 2023
1 parent 80dbbfb commit 65b3085
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pcomfortcloud/session.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ def _create_token(self):
response = None

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

0 comments on commit 65b3085

Please sign in to comment.