mirror of
https://github.com/bitwarden/browser
synced 2025-12-16 16:23:44 +00:00
Fix fingerprint phrases (#1071)
* Fix fingerprint phrases in the bulk confirm modal * Update jslib
This commit is contained in:
2
jslib
2
jslib
Submodule jslib updated: 18bf616e2e...119699b82c
@@ -52,7 +52,7 @@ export class BulkConfirmComponent implements OnInit {
|
|||||||
|
|
||||||
for (const entry of response.data) {
|
for (const entry of response.data) {
|
||||||
const publicKey = Utils.fromB64ToArray(entry.key);
|
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) {
|
if (fingerprint != null) {
|
||||||
this.publicKeys.set(entry.id, publicKey);
|
this.publicKeys.set(entry.id, publicKey);
|
||||||
this.fingerprints.set(entry.id, fingerprint.join('-'));
|
this.fingerprints.set(entry.id, fingerprint.join('-'));
|
||||||
|
|||||||
Reference in New Issue
Block a user