Tweak the privacy replace feature

This commit is contained in:
Thomas Sileo 2022-08-09 23:09:37 +02:00
parent f91c6c454a
commit ff59e49866
2 changed files with 4 additions and 3 deletions

View File

@ -12,7 +12,6 @@ from app.actor import LOCAL_ACTOR
from app.actor import Actor
from app.actor import RemoteActor
from app.media import proxied_media_url
from app.utils import privacy_replace
from app.utils.datetime import now
from app.utils.datetime import parse_isoformat
@ -178,7 +177,7 @@ class Object:
if self.ap_object.get("mediaType") == "text/markdown":
content = markdown(content, extensions=["mdx_linkify"])
return privacy_replace.replace_content(content)
return content
@property
def summary(self) -> str | None:

View File

@ -307,7 +307,9 @@ def _clean_html(html: str, note: Object) -> str:
return _emojify(
_replace_custom_emojis(
bleach.clean(
_update_inline_imgs(highlight(html)),
privacy_replace.replace_content(
_update_inline_imgs(highlight(html))
),
tags=ALLOWED_TAGS,
attributes=ALLOWED_ATTRIBUTES,
strip=True,