fix: leftover debug log

This commit is contained in:
Julian Lam
2026-04-14 13:00:59 -04:00
parent b7ba11259e
commit 0cca729a69

View File

@@ -71,7 +71,6 @@ Blocklists.refresh = async (url) => {
Blocklists.check = async (domain) => {
const blocklists = await Blocklists.list();
console.log(blocklists);
let present = await db.isMemberOfSortedSets(blocklists.map(({ url }) => `blocklist:${url}`), domain);
present = present.reduce((memo, present) => memo || present, false);