diff --git a/common/src/services/state.service.ts b/common/src/services/state.service.ts index b009487a..05e02b8a 100644 --- a/common/src/services/state.service.ts +++ b/common/src/services/state.service.ts @@ -1243,7 +1243,8 @@ export class StateService implements StateServiceAbstraction { } const state = options?.useSecureStorage ? - await this.secureStorageService.get('state', options) : + await this.secureStorageService.get('state', options) ?? + await this.storageService.get('state', this.reconcileOptions(options, { htmlStorageLocation: HtmlStorageLocation.Local })) : await this.storageService.get('state', options); return state?.accounts[options?.userId ?? this.state.activeUserId];