From 013e6db6ef6ea5f412282c7af697897aeb98b206 Mon Sep 17 00:00:00 2001 From: Raymond Hill Date: Sun, 6 Oct 2024 17:05:44 -0400 Subject: [PATCH] Fix typo --- platform/nodejs/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform/nodejs/index.js b/platform/nodejs/index.js index d50fb4e19..5fad3bec2 100644 --- a/platform/nodejs/index.js +++ b/platform/nodejs/index.js @@ -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);