Fix broken syncLoop function

This commit is contained in:
joeuhren
2021-03-20 17:49:05 -06:00
parent 41f7500a04
commit d2521a879f
+2 -2
View File
@@ -754,11 +754,11 @@ module.exports = {
if (shouldExit && exit) {
// exit if we're done
exit();
} else {
}
// stop the loop if we're done
return;
}
}
// if we're not finished
if (index < iterations) {