From 9e86e85def603a5ea4a9474c7f426a5c9f761c97 Mon Sep 17 00:00:00 2001 From: Robyn MacCallum Date: Wed, 10 Nov 2021 14:15:34 -0500 Subject: [PATCH] setDisableFavicon to correct storage location --- common/src/services/state.service.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/src/services/state.service.ts b/common/src/services/state.service.ts index d3e2789d..4997f4b6 100644 --- a/common/src/services/state.service.ts +++ b/common/src/services/state.service.ts @@ -703,9 +703,9 @@ export class StateService implements StateServiceAbstraction { } async setDisableFavicon(value: boolean, options?: StorageOptions): Promise { - const globals = await this.getGlobals(this.reconcileOptions(options, this.defaultOnDiskOptions)); + const globals = await this.getGlobals(this.reconcileOptions(options, this.defaultOnDiskLocalOptions)); globals.disableFavicon = value; - await this.saveGlobals(globals, this.reconcileOptions(options, this.defaultOnDiskOptions)); + await this.saveGlobals(globals, this.reconcileOptions(options, this.defaultOnDiskLocalOptions)); } async setDisableGa(value: boolean, options?: StorageOptions): Promise {