More sanitization

This commit is contained in:
Mint 2022-09-09 19:30:11 +03:00
parent 27ccf4c5da
commit fb491af8ec

View file

@ -185,6 +185,8 @@ def tidyup(domain: str) -> str:
domain = re.sub("\:\d+$", "", domain)
# bigger retards put the schema in their blocklist, sometimes even without slashes
domain = re.sub("^https?\:(\/*)", "", domain)
# and trailing slash
domain = re.sub("\/$", "", domain)
# the biggest retards of them all try to block individual users
domain = re.sub("(.+)\@", "", domain)
return domain