This commit is contained in:
git-bruh 2021-07-19 17:37:25 +05:30
parent 597c82cd88
commit 0ac5faf357
No known key found for this signature in database
GPG key ID: E1475C50075ADCE6

View file

@ -274,14 +274,14 @@ class MatrixClient(AppService):
<a href="https://matrix.to/#/{event.room_id}/{event.id}">\ <a href="https://matrix.to/#/{event.room_id}/{event.id}">\
In reply to</a><a href="https://matrix.to/#/{event.sender}">\ In reply to</a><a href="https://matrix.to/#/{event.sender}">\
{event.sender}</a><br>{event.formatted_body}</blockquote></mx-reply>\ {event.sender}</a><br>{event.formatted_body}</blockquote></mx-reply>\
{content["formatted_body"]}""", {content.get("formatted_body", content['body'])}""",
} }
if edit: if edit:
content = { content = {
**content, **content,
"body": f" * {content['body']}", "body": f" * {content['body']}",
"formatted_body": f" * {content['formatted_body']}", "formatted_body": f" * {content.get('formatted_body', content['body'])}",
"m.relates_to": {"event_id": edit, "rel_type": "m.replace"}, "m.relates_to": {"event_id": edit, "rel_type": "m.replace"},
"m.new_content": {**content}, "m.new_content": {**content},
} }