Update blocklist.ts

This commit is contained in:
Nicolas 2024-07-18 14:20:19 -04:00
parent 6161b83890
commit 5f14f4f788

View File

@ -59,7 +59,7 @@ export function isUrlBlocked(url: string): boolean {
return isBlocked;
} catch (e) {
// If an error occurs (e.g., invalid URL), return false
console.error(`Error processing URL: ${url}`, e);
console.error(`Error parsing the following URL: ${url}`);
return false;
}
}