Trigger search indexing when cipher list fag is enabled (#17813)

pull/17839/head^2
SmithThe4th 5 months ago committed by GitHub
parent 701ecb7466
commit ec5a54fa37
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -165,7 +165,9 @@ export class CipherService implements CipherServiceAbstraction {
}),
switchMap(async (ciphers) => {
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;
}),
tap((decrypted) => {

Loading…
Cancel
Save