From a46510bab4b3d43c66a904f598ec977edbf073c7 Mon Sep 17 00:00:00 2001 From: Justin Baur <136baur@gmail.com> Date: Fri, 29 Jul 2022 09:47:30 -0400 Subject: [PATCH] [PS-1202] Also update the decrypted history (#3205) --- libs/common/src/services/passwordGeneration.service.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/libs/common/src/services/passwordGeneration.service.ts b/libs/common/src/services/passwordGeneration.service.ts index c752fcd98b..f9e8836a28 100644 --- a/libs/common/src/services/passwordGeneration.service.ts +++ b/libs/common/src/services/passwordGeneration.service.ts @@ -380,6 +380,7 @@ export class PasswordGenerationService implements PasswordGenerationServiceAbstr } const newHistory = await this.encryptHistory(currentHistory); + await this.stateService.setDecryptedPasswordGenerationHistory(currentHistory); return await this.stateService.setEncryptedPasswordGenerationHistory(newHistory); }