@esfaenza/core 19.2.158 → 19.2.159

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1212,7 +1212,7 @@ class AppState {
1212
1212
  this.intercom.inbounds.subscribe((t) => { this.handleInboundMessage(t); });
1213
1213
  }
1214
1214
  async hookPreferences() {
1215
- let originalRes = await firstValueFrom(this.prefs.getItem(this.PREFS_DISABLE_EFFECTS));
1215
+ let originalRes = await firstValueFrom(this.prefs.getItem(this.PREFS_DISABLE_EFFECTS, false, true));
1216
1216
  let effectsOff = originalRes?.value || false;
1217
1217
  this.graphicEffects.set(!effectsOff);
1218
1218
  }