Skip to content
This repository was archived by the owner on May 28, 2023. It is now read-only.

Commit 3399c27

Browse files
E
1 parent 034810f commit 3399c27

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ let educationWebsite = fs.readFileSync(join(__dirname, 'education/index.html'));
2525
let loadingPage = fs.readFileSync(join(__dirname, 'education/load.html'));
2626
const blacklisted: string[] = [];
2727
const disableyt: string[] = [];
28+
const otherBlacklist: string [] = [];
2829
fs.readFile(join(__dirname, 'blocklists/ADS.txt'), (err, data) => {
2930
if (err) {
3031
console.error(err);
@@ -33,7 +34,6 @@ fs.readFile(join(__dirname, 'blocklists/ADS.txt'), (err, data) => {
3334
const lines = data.toString().split('\n');
3435
for (let i in lines) blacklisted.push(lines[i]);
3536
});
36-
3737
if (numCPUs > 0 && cluster.isPrimary) {
3838
console.log(`Primary ${process.pid} is running`);
3939
for (let i = 0; i < numCPUs; i++) {

0 commit comments

Comments
 (0)