diff options
-rw-r--r-- | html.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -117,6 +117,9 @@ xs_str *html_actor_icon(xs_str *os, char *actor, if (priv) s = xs_str_cat(s, " <span title=\"private\">🔒</span>"); + if (strcmp(xs_dict_get(actor, "type"), "Service") == 0) + s = xs_str_cat(s, " <span title=\"bot\">🤖</span>"); + if (xs_is_null(date)) { s = xs_str_cat(s, "<br>\n \n"); } |