commit
e4cf8bf656
2
jslib
2
jslib
|
@ -1 +1 @@
|
|||
Subproject commit 92a65b7b368a8dbf55350657674c90169b04c30b
|
||||
Subproject commit 448856cc22510086bfddc99e3f1022ee28727694
|
|
@ -171,7 +171,7 @@ export default class MainBackground {
|
|||
this.stateMigrationService = new StateMigrationService(
|
||||
this.storageService,
|
||||
this.secureStorageService,
|
||||
new GlobalStateFactory(GlobalState)
|
||||
new StateFactory(GlobalState, Account)
|
||||
);
|
||||
this.stateService = new StateService(
|
||||
this.storageService,
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
import { GlobalState } from "jslib-common/models/domain/globalState";
|
||||
import { StorageOptions } from "jslib-common/models/domain/storageOptions";
|
||||
import { StateService as BaseStateService } from "jslib-common/services/state.service";
|
||||
|
||||
|
@ -7,7 +8,10 @@ import { BrowserGroupingsComponentState } from "../models/browserGroupingsCompon
|
|||
import { BrowserSendComponentState } from "../models/browserSendComponentState";
|
||||
import { StateService as StateServiceAbstraction } from "./abstractions/state.service";
|
||||
|
||||
export class StateService extends BaseStateService<Account> implements StateServiceAbstraction {
|
||||
export class StateService
|
||||
extends BaseStateService<GlobalState, Account>
|
||||
implements StateServiceAbstraction
|
||||
{
|
||||
async addAccount(account: Account) {
|
||||
// Apply browser overrides to default account values
|
||||
account = new Account(account);
|
||||
|
|
Loading…
Reference in New Issue