commit 32b7fa2fcb8d77cab49f0b17af75669139901859
parent 6f884e0d5d4eb9be41764c5ae16da52fed997e88
Author: default <nobody@localhost>
Date: Thu, 10 Apr 2025 08:25:35 +0200
Shorten link label in Attachments.
Diffstat:
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/html.c b/html.c
@@ -2439,13 +2439,19 @@ xs_html *html_entry(snac *user, xs_dict *msg, int read_only,
name = NULL;
}
else {
+ xs *d_href = xs_dup(o_href);
+ if (strlen(d_href) > 64) {
+ d_href[64] = '\0';
+ d_href = xs_str_cat(d_href, "...");
+ }
+
xs_html_add(content_attachments,
xs_html_tag("p",
xs_html_tag("a",
xs_html_attr("href", o_href),
xs_html_text(L("Attachment")),
xs_html_text(": "),
- xs_html_text(o_href))));
+ xs_html_text(d_href))));
/* do not generate an Alt... */
name = NULL;