From 029367f7cc9c8f4d7ed1ff1fbf81e7326c3eab78 Mon Sep 17 00:00:00 2001 From: default Date: Mon, 9 Jan 2023 09:24:09 +0100 Subject: [PATCH] Show the mentioned people after a CC:. --- html.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/html.c b/html.c index 8298d87..e65e8cd 100644 --- a/html.c +++ b/html.c @@ -416,6 +416,11 @@ d_char *build_mentions(snac *snac, char *msg) } } + if (*s) { + xs *s1 = s; + s = xs_fmt("\n\n\nCC: %s", s1); + } + return s; }