summaryrefslogtreecommitdiff
path: root/format.c
diff options
context:
space:
mode:
Diffstat (limited to 'format.c')
-rw-r--r--format.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/format.c b/format.c
index 525edb0..862d766 100644
--- a/format.c
+++ b/format.c
@@ -405,10 +405,11 @@ xs_str *not_really_markdown(const char *content, xs_list **attach, xs_list **tag
405 const char *k, *v; 405 const char *k, *v;
406 406
407 while (xs_dict_next(d, &k, &v, &c)) { 407 while (xs_dict_next(d, &k, &v, &c)) {
408 const char *t = NULL; 408 const char *t = xs_mime_by_ext(v);
409 409
410 /* is it an URL to an image? */ 410 /* is it an URL to an image? */
411 if (xs_startswith(v, "https:/" "/") && xs_startswith((t = xs_mime_by_ext(v)), "image/")) { 411 if (xs_startswith(v, "https:/" "/") &&
412 (xs_startswith(t, "image/") || strcmp(t, "application/octet-stream") == 0)) {
412 if (tag && xs_str_in(s, k) != -1) { 413 if (tag && xs_str_in(s, k) != -1) {
413 /* add the emoji to the tag list */ 414 /* add the emoji to the tag list */
414 xs *e = xs_dict_new(); 415 xs *e = xs_dict_new();