diff options
author | default <nobody@localhost> | 2023-01-09 09:24:09 +0100 |
---|---|---|
committer | default <nobody@localhost> | 2023-01-09 09:24:09 +0100 |
commit | 029367f7cc9c8f4d7ed1ff1fbf81e7326c3eab78 (patch) | |
tree | 71eb79489134439fd599b4e022518c5607148644 | |
parent | f5ac531c923bbe0a779fa9c5688ff20b43130359 (diff) |
Show the mentioned people after a CC:.
-rw-r--r-- | html.c | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -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; } |