diff options
author | default <nobody@localhost> | 2022-10-20 14:26:34 +0200 |
---|---|---|
committer | default <nobody@localhost> | 2022-10-20 14:26:34 +0200 |
commit | 06c838b523d2531aaef66b7b9d075be1189996a4 (patch) | |
tree | bf635a46614ddecd1d0a1a4e966b896860b57b69 /html.c | |
parent | 30274e227fac9bd0e58fc961f517cf56fdad48b3 (diff) |
Updated LICENSE.
Diffstat (limited to 'html.c')
-rw-r--r-- | html.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -479,6 +479,8 @@ d_char *html_entry(snac *snac, d_char *os, char *msg, xs_set *seen, int local, i int likes = xs_list_len(xs_dict_get(meta, "liked_by")); int boosts = xs_list_len(xs_dict_get(meta, "announced_by")); + /* alternate emojis: %d 👍 %d 🔁 */ + xs *s1 = xs_fmt( "<div class=\"snac-score\">%d ★ %d ↺</div>\n", likes, boosts); |