Android client was crashing any time the base64-encoded public key
included a '+' due to lack of url encoding.
pull/749/head
lilia 10 years ago
parent a104ee9ca6
commit 05a5b7e76c

@ -144,7 +144,7 @@
var proto = textsecure.protobuf.ProvisioningUuid.decode(request.body);
qrCode.makeCode('tsdevice:/' +
'?uuid=' + proto.uuid +
'&pub_key=' + btoa(getString(cryptoInfo.pubKey)));
'&pub_key=' + encodeURIComponent(btoa(getString(cryptoInfo.pubKey))));
$('img').removeAttr('style');
$('#multi-device .status').text("Use your phone to scan the QR code.")
request.respond(200, 'OK');

Loading…
Cancel
Save