From 8c8fd9c59775099c077e5cfd9ac2ba29b06caa45 Mon Sep 17 00:00:00 2001 From: Mint <> Date: Sun, 7 Aug 2022 15:40:38 +0300 Subject: [PATCH] And another --- fetch_blocks.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/fetch_blocks.py b/fetch_blocks.py index 11a9b21..64a344a 100644 --- a/fetch_blocks.py +++ b/fetch_blocks.py @@ -105,6 +105,7 @@ for blocker, software in c.fetchall(): if blocked == "": continue blocked == blocked.lower() + blocker == blocker.lower() c.execute( "select domain from instances where domain = ?", (blocked,) ) @@ -132,6 +133,7 @@ for blocker, software in c.fetchall(): else {})} ).items(): for blocked, reason in info.items(): + blocker == blocker.lower() blocked == blocked.lower() c.execute( "update blocks set reason = ? where blocker = ? and blocked = ? and block_level = ?", @@ -148,6 +150,7 @@ for blocker, software in c.fetchall(): for instance in blocks: blocked, blocked_hash, reason = instance.values() blocked == blocked.lower() + blocker == blocker.lower() if blocked.count("*") <= 1: c.execute( "select hash from instances where hash = ?", (blocked_hash,)