Skip to content

Commit

Permalink
npp-sorting: fix 3.5 year old bug (return -> continue)
Browse files Browse the repository at this point in the history
  • Loading branch information
siddharthvp committed Oct 4, 2023
1 parent a8def94 commit e6a3e55
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions reports/npp-sorting/npp-sorting.js
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,8 @@ process.chdir(__dirname);
log(`[+] Reading contents and descriptions: ${++pagesRead} pages read`);
}
if (page.missing) {
tableInfo[page.title].skip = true; // skip it and return
return;
tableInfo[page.title].skip = true; // skip it
continue;
}
var text = page.revisions[0].content;
if (!tableInfo[page.title]) {
Expand Down

0 comments on commit e6a3e55

Please sign in to comment.