diff options
| author | default <nobody@localhost> | 2025-02-14 18:19:21 +0100 |
|---|---|---|
| committer | default <nobody@localhost> | 2025-02-14 18:19:21 +0100 |
| commit | d8ae88e779d8d27868c5357424132eab48bf18a5 (patch) | |
| tree | d54909ef9708eb3b68a5f8e1e97133fd785e49fa /html.c | |
| parent | e020ca84718d99401a99af0363992b4661a1d16e (diff) | |
Some message tweaks.
Diffstat (limited to 'html.c')
| -rw-r--r-- | html.c | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -744,9 +744,11 @@ xs_html *html_user_head(snac *user, const char *desc, const char *url) xs *fwers = follower_list(user); xs *fwing = following_list(user); - xs *s1 = xs_fmt(L("%d following, %d followers · "), + xs *s1 = xs_fmt(L("%d following, %d followers"), xs_list_len(fwing), xs_list_len(fwers)); + s1 = xs_str_cat(s1, " · "); + s_desc = xs_str_prepend_i(s_desc, s1); } @@ -1078,7 +1080,7 @@ static xs_html *html_user_body(snac *user, int read_only) xs *fwers = follower_list(user); xs *fwing = following_list(user); - xs *s1 = xs_fmt(L("%d following %d followers"), + xs *s1 = xs_fmt(L("%d following, %d followers"), xs_list_len(fwing), xs_list_len(fwers)); xs_html_add(top_user, |