We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d3e157 commit 2d3372fCopy full SHA for 2d3372f
logic/authentication.py
@@ -48,7 +48,7 @@ def authenticate_account(user_data: dict) -> dict:
48
try:
49
response = json.loads(response.decode())
50
except Exception as e:
51
- raise ValueError("Error while parsing server JSON response: ")
+ raise ValueError("Error while parsing server JSON response: " + str(e))
52
53
if not 'challenge' in response:
54
raise ValueError("Server did not give authenticatation challenge! Are you sure this is a Coldwire server ?")
0 commit comments