commit b9f4bea0c9ba5f4cd60843a7ee5f93bc1658d613
parent 76ed2957e53b19c96b3a607769ca0dc682932b9f
Author: default <nobody@localhost>
Date: Sat, 19 Aug 2023 22:05:12 +0200
Only use a Link as an attachment if there are no other.
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/html.c b/html.c
@@ -1317,7 +1317,7 @@ xs_str *html_entry(snac *user, xs_str *os, const xs_dict *msg, int local,
continue;
/* if it's a plain Link, check if it can be "rewritten" */
- if (strcmp(t, "Link") == 0) {
+ if (xs_list_len(attach) < 2 && strcmp(t, "Link") == 0) {
const char *mt = xs_mime_by_ext(url);
if (xs_startswith(mt, "image/") ||