diff options
| author | grunfink <grunfink@comam.es> | 2026-05-07 10:28:59 +0200 |
|---|---|---|
| committer | grunfink <grunfink@comam.es> | 2026-05-07 10:28:59 +0200 |
| commit | 61971f2792185e32dfa31de22d2f168b60f6c610 (patch) | |
| tree | 9ea714ac4dd9c8bb4466594f281cd2bfd13e5149 | |
| parent | c75191f75ea03c263593a9e352e1c661ebfca74f (diff) | |
Show a thumb up next to account names that follow you.
| -rw-r--r-- | html.c | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -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, |