setInterval von 5 auf 10 Sekunden erhöhert, da das CPL so mehr Zeit hat, alle Variablen zu initialisieren., weil bei 5 Sekunden irgendwann schafft das CPL nicht

This commit is contained in:
ISA
2024-10-28 08:37:30 +01:00
parent 30626a17d6
commit 8222eeac21
5 changed files with 24 additions and 19 deletions

View File

@@ -91,7 +91,7 @@ export async function loadWindowVariables() {
} else {
console.log("Noch fehlende Variablen:", missingVars);
}
}, 5000); // Überprüfung alle 5 Sekunden
}, 10000); // Überprüfung alle 10 Sekunden
}
})
.catch((error) => {