We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9017f75 commit c9e83c6Copy full SHA for c9e83c6
html5/js/Client.js
@@ -2882,7 +2882,8 @@ class XpraClient {
2882
const hex_salt = Utilities.convertToHex(salt);
2883
Utilities.gendigest(challenge_digest, password, hex_salt)
2884
.then(challenge_response => {
2885
- this.do_send_hello(challenge_response, client_salt)
+ const hex_challenge = Utilities.convertToHex(challenge_response);
2886
+ this.do_send_hello(hex_challenge, client_salt)
2887
})
2888
.catch(err => this.disconnect("failed to generate challenge response: " + err));
2889
0 commit comments