mirror of
https://github.com/bitwarden/browser
synced 2025-12-06 00:13:28 +00:00
Trigger search indexing when cipher list fag is enabled (#17813)
This commit is contained in:
@@ -165,7 +165,9 @@ export class CipherService implements CipherServiceAbstraction {
|
|||||||
}),
|
}),
|
||||||
switchMap(async (ciphers) => {
|
switchMap(async (ciphers) => {
|
||||||
const [decrypted, failures] = await this.decryptCiphersWithSdk(ciphers, userId, false);
|
const [decrypted, failures] = await this.decryptCiphersWithSdk(ciphers, userId, false);
|
||||||
await this.setFailedDecryptedCiphers(failures, userId);
|
void this.setFailedDecryptedCiphers(failures, userId);
|
||||||
|
// Trigger full decryption and indexing in background
|
||||||
|
void this.getAllDecrypted(userId);
|
||||||
return decrypted;
|
return decrypted;
|
||||||
}),
|
}),
|
||||||
tap((decrypted) => {
|
tap((decrypted) => {
|
||||||
|
|||||||
Reference in New Issue
Block a user