From d2521a879f2a30404b6c579d48139c0756488558 Mon Sep 17 00:00:00 2001 From: joeuhren Date: Sat, 20 Mar 2021 17:49:05 -0600 Subject: [PATCH] Fix broken syncLoop function --- lib/explorer.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/explorer.js b/lib/explorer.js index ea77cdac..7f91e493 100644 --- a/lib/explorer.js +++ b/lib/explorer.js @@ -754,10 +754,10 @@ module.exports = { if (shouldExit && exit) { // exit if we're done exit(); - } else { - // stop the loop if we're done - return; } + + // stop the loop if we're done + return; } // if we're not finished