From 6b993f2f06327572d854feed2dc8dac1683c3065 Mon Sep 17 00:00:00 2001 From: Manish Jethani Date: Tue, 10 Aug 2021 04:42:04 +0530 Subject: [PATCH] Fix pslInit() for install script (#3807) --- platform/nodejs/index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/platform/nodejs/index.js b/platform/nodejs/index.js index 0a7e360bc..308a1bb22 100644 --- a/platform/nodejs/index.js +++ b/platform/nodejs/index.js @@ -101,6 +101,7 @@ function pslInit(raw) { console.error('Unable to populate public suffix list'); return; } + globals.publicSuffixList.parse(raw, globals.punycode.toASCII); return globals.publicSuffixList; }