mirror of
https://github.com/bitwarden/jslib
synced 2025-12-15 07:43:45 +00:00
Fix storage keys in v1 migration (#696)
This commit is contained in:
@@ -373,7 +373,7 @@ export class StateMigrationService<
|
|||||||
legacyEtmKey: null,
|
legacyEtmKey: null,
|
||||||
organizationKeys: {
|
organizationKeys: {
|
||||||
decrypted: null,
|
decrypted: null,
|
||||||
encrypted: await this.get<any>(v1Keys.encOrgKeys + userId),
|
encrypted: await this.get<any>(v1Keys.encOrgKeys),
|
||||||
},
|
},
|
||||||
privateKey: {
|
privateKey: {
|
||||||
decrypted: null,
|
decrypted: null,
|
||||||
@@ -381,7 +381,7 @@ export class StateMigrationService<
|
|||||||
},
|
},
|
||||||
providerKeys: {
|
providerKeys: {
|
||||||
decrypted: null,
|
decrypted: null,
|
||||||
encrypted: await this.get<any>(v1Keys.encProviderKeys + userId),
|
encrypted: await this.get<any>(v1Keys.encProviderKeys),
|
||||||
},
|
},
|
||||||
publicKey: null,
|
publicKey: null,
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user