From 8c51050eda06016c936cfb12d39dd887ddcd14ef Mon Sep 17 00:00:00 2001 From: Jeffrey Holland <124393578+jholland-livefront@users.noreply.github.com> Date: Thu, 28 Aug 2025 10:55:18 +0200 Subject: [PATCH] PM-23386 Display autofill options after sync (#15906) * PM-23386 Display autofill options after sync * Clear the cipher state instead of changing caching * Fix `true` param that isn't needed anymore --- libs/common/src/vault/services/cipher.service.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/libs/common/src/vault/services/cipher.service.ts b/libs/common/src/vault/services/cipher.service.ts index 60e5bfe04e4..8429c97be2e 100644 --- a/libs/common/src/vault/services/cipher.service.ts +++ b/libs/common/src/vault/services/cipher.service.ts @@ -1138,6 +1138,7 @@ export class CipherService implements CipherServiceAbstraction { } async replace(ciphers: { [id: string]: CipherData }, userId: UserId): Promise { + await this.clearEncryptedCiphersState(userId); await this.updateEncryptedCipherState(() => ciphers, userId); }