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-06 15:11:41 -0700
committerGitHub <noreply@github.com>2019-03-06 15:11:41 -0700
commit06cbf79fe3028c675b58ecc50ced75497dbcbcdf (patch)
tree1513e74d131e2ac7810fa90912a9007d582e6ffe /synapse/res/templates/room.html
parentMerge pull request #4818 from matrix-org/erikj/prefill_client_ips (diff)
parentUpdate changelog.d/4779.misc (diff)
downloadsynapse-06cbf79fe3028c675b58ecc50ced75497dbcbcdf.tar.xz
Merge pull request #4779 from matrix-org/travis/icons
Use static locations for Riot icons
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>