Skip to content

Commit

Permalink
Merge pull request #84 from martinkaltoft/fix-token-renew
Browse files Browse the repository at this point in the history
Change language parameter from string to int
  • Loading branch information
lostfields authored Dec 14, 2023
2 parents 80dbbfb + 65b3085 commit 6cd2b45
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 6cd2b45

Please sign in to comment.