summaryrefslogtreecommitdiff
path: root/html.c
diff options
context:
space:
mode:
authordefault <nobody@localhost>2023-11-28 11:49:50 +0100
committerdefault <nobody@localhost>2023-11-28 11:49:50 +0100
commit5b2f361b33d77c99ff360c4a0719c62deba3984e (patch)
treeb557bd219887502d3d1627221efde839b7591a0b /html.c
parente092a772b09a13abed6859a70f8ddc0e2b81f34e (diff)
Fixed an excessive sanitization.
Diffstat (limited to 'html.c')
-rw-r--r--html.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/html.c b/html.c
index 0f03b74..555e7bd 100644
--- a/html.c
+++ b/html.c
@@ -1573,7 +1573,7 @@ xs_str *html_entry(snac *user, xs_str *os, const xs_dict *msg, int local,
xs_html_attr("class", "snac-origin"),
xs_html_tag("a",
xs_html_attr("href", xs_dict_get(actor_r, "id")),
- xs_html_text(name)),
+ xs_html_raw(name)), /* already sanitized */
xs_html_text(" "),
xs_html_text(L("boosted"))));
}