]> git.mxchange.org Git - fba.git/commitdiff
Continued:
authorRoland Häder <roland@mxchange.org>
Thu, 22 Jun 2023 14:25:58 +0000 (16:25 +0200)
committerRoland Häder <roland@mxchange.org>
Thu, 22 Jun 2023 14:25:58 +0000 (16:25 +0200)
- don't check domain with blacklist before it has been deobsfucated

fba/commands.py

index 4e74e3f6c2f61350e2256ed1611d7889d7234f81..18615066c6620443e4ad3aa199ac58e8dce3b674 100644 (file)
@@ -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)