Skip to content

Commit 6b6c16a

Browse files
fix icon cache busting in ping element
1 parent 921d6ba commit 6b6c16a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

templates/ping-element.html

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
{% when Some with (raw_icon) %}
44
{% let icon = "{}"|format(raw_icon) %}
55
{% when None %}
6-
{% let icon = "{}/icon.png"|format(root_url)|bust_dir(bd) %}
6+
{% let icon_cb = "/icon.png"|bust_dir(bd) %}
7+
{% let icon = "{}/icon.png?cb={}"|format(root_url, icon_cb) %}
78
{% endmatch %}
89
<div class="server-response">
910
<div class="server-response-stack">

0 commit comments

Comments
 (0)