From 61971f2792185e32dfa31de22d2f168b60f6c610 Mon Sep 17 00:00:00 2001 From: grunfink Date: Thu, 7 May 2026 10:28:59 +0200 Subject: Show a thumb up next to account names that follow you. --- html.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/html.c b/html.c index 3f57be6..dbc65c8 100644 --- a/html.c +++ b/html.c @@ -345,6 +345,14 @@ xs_html *html_actor_icon(snac *user, xs_dict *actor, const char *date, xs_html_attr("title", "mutual relation"), xs_html_raw("🤝"))); } + else + if (fwer) { + xs_html_add(actor_icon, + xs_html_text(" "), + xs_html_tag("span", + xs_html_attr("title", "follows you"), + xs_html_raw("👍"))); + } if (instance_failure(actor_id, 0) == -1) { xs_html_add(actor_icon, -- cgit