Settings useJSON isn't what's expected.

This commit is contained in:
Mario Zechner 2023-06-18 14:50:08 +02:00
parent d01d984706
commit 36d7ce59f0
2 changed files with 2 additions and 1 deletions

View File

@ -222,8 +222,8 @@ class Items extends Model {
let start = performance.now();
const settings = new Settings();
const compressedItemsPerStore = [];
log(`Items - load using JSON: ${this.jsonData}`);
for (const store of STORE_KEYS) {
// if (["reweDe", "dmDe", "sparSi"].includes(store)) continue;
compressedItemsPerStore.push(
new Promise(async (resolve) => {
let start = performance.now();

View File

@ -19,6 +19,7 @@ class Settings extends Model {
}
}
this.jsonData = true;
log(`Settings - using JSON: ${this.jsonData}`);
}
save() {