1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-09-14 02:08:50 +02:00

[bug] Store everBeenUnlocked in memory (#667)

This commit is contained in:
Addison Beck 2022-02-10 23:46:42 -05:00 committed by GitHub
parent 5fad7c666f
commit b7d9a532cb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1468,20 +1468,17 @@ export class StateService<
async getEverBeenUnlocked(options?: StorageOptions): Promise<boolean> {
return (
(await this.getAccount(this.reconcileOptions(options, await this.defaultOnDiskOptions())))
?.profile?.everBeenUnlocked ?? false
(await this.getAccount(this.reconcileOptions(options, this.defaultInMemoryOptions)))?.profile
?.everBeenUnlocked ?? false
);
}
async setEverBeenUnlocked(value: boolean, options?: StorageOptions): Promise<void> {
const account = await this.getAccount(
this.reconcileOptions(options, await this.defaultOnDiskOptions())
this.reconcileOptions(options, this.defaultInMemoryOptions)
);
account.profile.everBeenUnlocked = value;
await this.saveAccount(
account,
this.reconcileOptions(options, await this.defaultOnDiskOptions())
);
await this.saveAccount(account, this.reconcileOptions(options, this.defaultInMemoryOptions));
}
async getForcePasswordReset(options?: StorageOptions): Promise<boolean> {