summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordefault <nobody@localhost>2023-11-09 14:04:50 +0100
committerdefault <nobody@localhost>2023-11-09 14:04:50 +0100
commitcd74f80279982912b5a612c2d82c258eb81fcd2b (patch)
treed55ebacff3c10831b3031454c0f4292331770f9e
parent73ce97ae94273e5efb74b40aa3656f4e75539789 (diff)
Fixed stray end of a tag.
-rw-r--r--html.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/html.c b/html.c
index 7baf829..0fa524d 100644
--- a/html.c
+++ b/html.c
@@ -1116,7 +1116,7 @@ xs_str *html_entry(snac *user, xs_str *os, const xs_dict *msg, int local,
xs *es1 = encode_html(xs_dict_get(user->config, "name"));
xs *s1 = xs_fmt(
"<div class=\"snac-origin\">"
- "<a href=\"%s\">%s</a> %s</a></div>",
+ "<a href=\"%s\">%s</a> %s</div>",
user->actor, es1, L("boosted")
);