mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-06 09:20:43 +01:00
catch any errors when generating fingerprint
This commit is contained in:
parent
a7555f56e7
commit
f0407e4327
@ -254,9 +254,11 @@ export class PeopleComponent implements OnInit {
|
||||
const orgKey = await this.cryptoService.getOrgKey(this.organizationId);
|
||||
const publicKeyResponse = await this.apiService.getUserPublicKey(user.userId);
|
||||
const publicKey = Utils.fromB64ToArray(publicKeyResponse.publicKey);
|
||||
try {
|
||||
// tslint:disable-next-line
|
||||
console.log('User\'s fingerprint: ' +
|
||||
(await this.cryptoService.getFingerprint(user.userId, publicKey.buffer)).join('-'));
|
||||
} catch { }
|
||||
const key = await this.cryptoService.rsaEncrypt(orgKey.key, publicKey.buffer);
|
||||
const request = new OrganizationUserConfirmRequest();
|
||||
request.key = key.encryptedString;
|
||||
|
Loading…
Reference in New Issue
Block a user