Fix storage keys in v1 migration (#696)
This commit is contained in:
parent
d81eb7ddae
commit
c1a37eab13
|
@ -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,
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue