- mastodon: let obfuscated domains be added to queue, they will be deobfuscated
in main loop(s) anyway
logger.debug("table[]='%s'", type(table))
if table is None:
- logger.warning("domain='%s' has no table tag - EXIT !", domain)
+ logger.warning("domain='%s' has no table tag - EXIT!", domain)
return []
# Find all rows in table
logger.debug("table[]='%s'", type(table))
if table is None:
- logger.warning("domain='%s' has no table tag - EXIT !", domain)
+ logger.warning("domain='%s' has no table tag - EXIT!", domain)
return []
# Find all rows in table
if not isinstance(block, dict):
logger.debug("block[]='%s' is of type 'dict' - SKIPPED!", type(block))
continue
- elif not domain_helper.is_wanted(block["domain"]):
+ elif not block["domain"].find("*") == -1 and block["domain"].find("?") == -1 and domain_helper.is_wanted(block["domain"]):
logger.debug("block[domain]='%s' is not wanted - SKIPPED!", block["domain"])
continue
elif block_level in ["accept", "accepted"]: