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

This commit is contained in:
SmithThe4th
2025-12-05 17:50:15 -05:00
committed by GitHub
parent 701ecb7466
commit ec5a54fa37

View File

@@ -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) => {