Don't santinize incoming post content

Helps with forwards compatibility
pull/30/head
Andrew Godwin 2022-11-21 20:00:35 -07:00
rodzic f6132a8e21
commit e38e176784
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -278,14 +278,14 @@ class Post(StatorModel):
post = cls.objects.create(
object_uri=data["id"],
author=author,
content=sanitize_post(data["content"]),
content=data["content"],
local=False,
)
created = True
else:
raise KeyError(f"No post with ID {data['id']}", data)
if update or created:
post.content = sanitize_post(data["content"])
post.content = data["content"]
post.summary = data.get("summary")
post.sensitive = data.get("as:sensitive", False)
post.url = data.get("url")