From 977646b644cb33b83c2da82dad511e70c6fc1d71 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= Date: Thu, 22 Jun 2023 16:25:58 +0200 Subject: [PATCH] Continued: - don't check domain with blacklist before it has been deobsfucated --- fba/commands.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/fba/commands.py b/fba/commands.py index 4e74e3f..1861506 100644 --- a/fba/commands.py +++ b/fba/commands.py @@ -226,9 +226,6 @@ def fetch_blocks(args: argparse.Namespace): if blocked == "": logger.warning("blocked is empty, blocker='%s'", blocker) continue - elif blacklist.is_blacklisted(blocked): - logger.debug("blocked='%s' is blacklisted - SKIPPED!", blocked) - continue elif blocked.count("*") > 0: # Some friendica servers also obscure domains without hash row = instances.deobscure("*", blocked) -- 2.39.5