1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-07-05 11:37:01 +02:00

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

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