Fix pslInit() for install script (#3807)

This commit is contained in:
Manish Jethani 2021-08-10 04:42:04 +05:30 committed by GitHub
parent d9adf5a6fb
commit 6b993f2f06
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -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;
}