Fix Jinja templating error when generating thumbnail URLs. (#12510)
scale is meant to be a constant string, not refer to a variable.
This commit is contained in:
parent
ecef741add
commit
103f51d867
|
@ -0,0 +1 @@
|
|||
Fix a long-standing bug where the image thumbanils embedded into email notifications were broken.
|
|
@ -30,7 +30,7 @@
|
|||
{%- elif message.msgtype == "m.notice" %}
|
||||
{{ message.body_text_html }}
|
||||
{%- elif message.msgtype == "m.image" and message.image_url %}
|
||||
<img src="{{ message.image_url|mxc_to_http(640, 480, scale) }}" />
|
||||
<img src="{{ message.image_url|mxc_to_http(640, 480, 'scale') }}" />
|
||||
{%- elif message.msgtype == "m.file" %}
|
||||
<span class="filename">{{ message.body_text_plain }}</span>
|
||||
{%- else %}
|
||||
|
|
Loading…
Reference in New Issue