Update blocklist.ts

This commit is contained in:
Nicolas
2024-07-18 14:20:19 -04:00
parent 6161b83890
commit 5f14f4f788
@@ -59,7 +59,7 @@ export function isUrlBlocked(url: string): boolean {
return isBlocked; return isBlocked;
} catch (e) { } catch (e) {
// If an error occurs (e.g., invalid URL), return false // 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; return false;
} }
} }