Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
gorhill committed Oct 6, 2024
1 parent acf7f39 commit 013e6db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion platform/nodejs/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ async function useLists(lists, options = {}) {
// Populate filtering engine with resolved filter lists
const promises = [];
for ( const list of lists ) {
promises.push(Promise.resolve(list).then(list => consumeList(list));
promises.push(Promise.resolve(list).then(list => consumeList(list)));
}

useLists.promise = Promise.all(promises);
Expand Down

0 comments on commit 013e6db

Please sign in to comment.