|
|
|
|
@ -1,10 +1,12 @@
@@ -1,10 +1,12 @@
|
|
|
|
|
import { StateMigrationService as BaseStateMigrationService } from "jslib-common/services/stateMigration.service"; |
|
|
|
|
|
|
|
|
|
import { Account } from "../models/account"; |
|
|
|
|
import { GlobalState } from "../models/globalState"; |
|
|
|
|
|
|
|
|
|
export class StateMigrationService extends BaseStateMigrationService<GlobalState> { |
|
|
|
|
export class StateMigrationService extends BaseStateMigrationService<GlobalState, Account> { |
|
|
|
|
protected async migrationStateFrom1To2(): Promise<void> { |
|
|
|
|
await super.migrateStateFrom1To2(); |
|
|
|
|
const globals = (await this.get<GlobalState>("global")) ?? this.globalStateFactory.create(); |
|
|
|
|
const globals = (await this.get<GlobalState>("global")) ?? this.stateFactory.createGlobal(null); |
|
|
|
|
globals.rememberEmail = (await this.get<boolean>("rememberEmail")) ?? globals.rememberEmail; |
|
|
|
|
await this.set("global", globals); |
|
|
|
|
} |
|
|
|
|
|