@esfaenza/core 19.2.156 → 19.2.157

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.
@@ -1213,7 +1213,7 @@ class AppState {
1213
1213
  }
1214
1214
  async hookPreferences() {
1215
1215
  let originalRes = await firstValueFrom(this.prefs.getItem(this.PREFS_DISABLE_EFFECTS));
1216
- let effectsOff = originalRes || false;
1216
+ let effectsOff = originalRes?.value || false;
1217
1217
  this.graphicEffects.set(!effectsOff);
1218
1218
  }
1219
1219
  getActiveJaceModules() {