summary refs log tree commit diff
path: root/synapse/res/templates/room.html
diff options
context:
space:
mode:
authorTravis Ralston <travpc@gmail.com>2019-03-01 15:02:02 -0700
committerTravis Ralston <travpc@gmail.com>2019-03-01 15:06:21 -0700
commit4dfbae18fe10c22a54421f211ad4a46a11777c16 (patch)
treeeab2de6b1a5b934e492a7775ef65f20d3c1a91d7 /synapse/res/templates/room.html
parentFix incorrect log about not persisting duplicate state event. (#4776) (diff)
downloadsynapse-4dfbae18fe10c22a54421f211ad4a46a11777c16.tar.xz
Use static locations for Riot icons
See https://github.com/vector-im/riot-web/issues/9009
Diffstat (limited to 'synapse/res/templates/room.html')
-rw-r--r--synapse/res/templates/room.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/synapse/res/templates/room.html b/synapse/res/templates/room.html
index 723c222d25..b8525fef88 100644
--- a/synapse/res/templates/room.html
+++ b/synapse/res/templates/room.html
@@ -5,11 +5,11 @@
                 <img alt="" src="{{ room.avatar_url|mxc_to_http(48,48) }}" />
             {% else %}
                 {% if room.hash % 3 == 0 %}
-                    <img alt="" src="https://vector.im/beta/img/76cfa6.png"  />
+                    <img alt="" src="https://riot.im/img/external/avatar-1.png"  />
                 {% elif room.hash % 3 == 1 %}
-                    <img alt="" src="https://vector.im/beta/img/50e2c2.png"  />
+                    <img alt="" src="https://riot.im/img/external/avatar-2.png"  />
                 {% else %}
-                    <img alt="" src="https://vector.im/beta/img/f4c371.png"  />
+                    <img alt="" src="https://riot.im/img/external/avatar-3.png"  />
                 {% endif %}
             {% endif %}
         </td>