Do not return but continue in a loop

This commit is contained in:
Johannes Zellner
2024-04-19 14:29:41 +02:00
parent 49243822af
commit 4516b0c57c
+1 -1
View File
@@ -248,7 +248,7 @@ async function updateChecklist(app, newChecks) {
// add new checklist items depending on sso state
const checklist = app.checklist || {};
for (let k in newChecks) {
if (app.checklist[k]) return;
if (app.checklist[k]) continue;
const item = {
acknowledged: false,