mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-11-12 15:36:39 -05:00
Support file messages & fix plain text
This commit is contained in:
parent
4845c7359d
commit
68f8fc2f14
2 changed files with 6 additions and 7 deletions
|
|
@ -18,13 +18,11 @@
|
|||
<div class="message_time">{{ message.ts|format_ts("%H:%M") }}</div>
|
||||
<div class="message_body">
|
||||
{% if message.msgtype == "m.text" %}
|
||||
{% if message.format == "org.matrix.custom.html" %}
|
||||
{{ message.body_text_html }}
|
||||
{% else %}
|
||||
{{ message.body_text_plain }}
|
||||
{% endif %}
|
||||
{{ message.body_text_html }}
|
||||
{% elif message.msgtype == "m.image" %}
|
||||
<img src="{{ message.image_url|mxc_to_http(640, 480, scale) }}" />
|
||||
{% elif message.msgtype == "m.file" %}
|
||||
<span class="filename">{{ message.body_text_plain }}</span>
|
||||
{% endif %}
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue