diff options
| -rw-r--r-- | src/leap/crypto/srpauth.py | 3 | 
1 files changed, 3 insertions, 0 deletions
| diff --git a/src/leap/crypto/srpauth.py b/src/leap/crypto/srpauth.py index eee8e525..ad1afd4c 100644 --- a/src/leap/crypto/srpauth.py +++ b/src/leap/crypto/srpauth.py @@ -177,6 +177,9 @@ class SRPAuth(QtCore.QObject):                  if init_session.status_code == 422:                      raise SRPAuthenticationError(self.tr("Unknown user")) +                raise SRPAuthenticationError(self.tr("There was a problem with" +                                                     " authentication")) +              json_content = json.loads(content)              salt = json_content.get("salt", None)              B = json_content.get("B", None) | 
