Don't santinize incoming post content

Helps with forwards compatibility
This commit is contained in:
Andrew Godwin 2022-11-21 20:00:35 -07:00
parent f6132a8e21
commit e38e176784

View file

@ -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")