From: Roland Häder Date: Thu, 22 Jun 2023 14:25:58 +0000 (+0200) Subject: Continued: X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=977646b644cb33b83c2da82dad511e70c6fc1d71;p=fba.git Continued: - don't check domain with blacklist before it has been deobsfucated --- 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)