PM-7533 Add missing value assignment (#8780)

This commit is contained in:
Carlos Gonçalves 2024-04-17 17:09:44 +01:00 committed by GitHub
parent f15bffb040
commit c045558312
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -785,7 +785,7 @@ export class CipherService implements CipherServiceAbstraction {
async upsert(cipher: CipherData | CipherData[]): Promise<any> {
const ciphers = cipher instanceof CipherData ? [cipher] : cipher;
await this.updateEncryptedCipherState((current) => {
ciphers.forEach((c) => current[c.id as CipherId]);
ciphers.forEach((c) => (current[c.id as CipherId] = c));
return current;
});
}