remotes/1693045480750635534/spooky-22
Aevann1 2021-07-27 02:52:01 +02:00
parent 82f807cabb
commit 2747d41c5a
1 changed files with 1 additions and 7 deletions

View File

@ -123,6 +123,7 @@ def sanitize(text, linkgen=False, flair=False):
netloc = urlparse(url).netloc
domain = get_domain(netloc)
if "profile-pic-20" not in tag.get("class", ""):
#print(tag.get('class'))
# set classes and wrap in link
@ -141,13 +142,6 @@ def sanitize(text, linkgen=False, flair=False):
link["data-target"] = "#expandImageModal"
tag.wrap(link)
else:
# non-whitelisted images get replaced with links
new_tag = soup.new_tag("a")
new_tag.string = tag["src"]
new_tag["href"] = tag["src"]
new_tag["rel"] = "nofollow noopener"
tag.replace_with(new_tag)
#disguised link preventer
for tag in soup.find_all("a"):