mirror of
https://github.com/bitwarden/browser.git
synced 2024-12-27 17:18:04 +01:00
Fix fingerprint phrases (#1071)
* Fix fingerprint phrases in the bulk confirm modal * Update jslib
This commit is contained in:
parent
1320a7c8cb
commit
c494cab234
2
jslib
2
jslib
@ -1 +1 @@
|
||||
Subproject commit 18bf616e2e0821a46b1cb71737d80b099a64b237
|
||||
Subproject commit 119699b82c26296cdd518c0c66e0cd3d61586309
|
@ -52,7 +52,7 @@ export class BulkConfirmComponent implements OnInit {
|
||||
|
||||
for (const entry of response.data) {
|
||||
const publicKey = Utils.fromB64ToArray(entry.key);
|
||||
const fingerprint = await this.cryptoService.getFingerprint(entry.id, publicKey.buffer);
|
||||
const fingerprint = await this.cryptoService.getFingerprint(entry.userId, publicKey.buffer);
|
||||
if (fingerprint != null) {
|
||||
this.publicKeys.set(entry.id, publicKey);
|
||||
this.fingerprints.set(entry.id, fingerprint.join('-'));
|
||||
|
Loading…
Reference in New Issue
Block a user