|
@@ -385,7 +385,8 @@ xs_str *not_really_markdown(const char *content, xs_list **attach, xs_list **tag
|
|
|
const char *t = NULL;
|
|
const char *t = NULL;
|
|
|
|
|
|
|
|
/* is it an URL to an image? */
|
|
/* is it an URL to an image? */
|
|
|
- if (xs_startswith(v, "https:/" "/") && xs_startswith((t = xs_mime_by_ext(v)), "image/")) {
|
|
|
|
|
|
|
+ if (xs_startswith(v, "https:/" "/") &&
|
|
|
|
|
+ (xs_startswith((t = xs_mime_by_ext(v)), "image/") || strrchr(v, '.') == NULL)) {
|
|
|
if (tag && xs_str_in(s, k) != -1) {
|
|
if (tag && xs_str_in(s, k) != -1) {
|
|
|
/* add the emoji to the tag list */
|
|
/* add the emoji to the tag list */
|
|
|
xs *e = xs_dict_new();
|
|
xs *e = xs_dict_new();
|