Update fediverse.py

This commit is contained in:
Namhyeon Go 2024-10-09 03:07:34 +09:00 committed by GitHub
parent 58e7322555
commit 56c8c62aa6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -75,7 +75,7 @@ class Fediverse(Extension):
# check if the text contains any of the bad domains
if bool(re.search(r"https://(" + "|".join(re.escape(domain) for domain in bad_domains) + ")", text)):
return False
return True
# check ID with K-Anonymity strategy
pattern = r"\b(?:(?<=\/@)|(?<=acct:))([a-zA-Z0-9]{10})\b"