浏览代码

Fix Jinja templating error when generating thumbnail URLs. (#12510)

scale is meant to be a constant string, not refer to a variable.
Patrick Cloke 2 年之前
父节点
当前提交
103f51d867
共有 2 个文件被更改,包括 2 次插入1 次删除
  1. 1 0
      changelog.d/12510.bugfix
  2. 1 1
      synapse/res/templates/notif.html

+ 1 - 0
changelog.d/12510.bugfix

@@ -0,0 +1 @@
+Fix a long-standing bug where the image thumbanils embedded into email notifications were broken.

+ 1 - 1
synapse/res/templates/notif.html

@@ -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 %}