diff options
author | default <nobody@localhost> | 2024-03-25 16:15:09 +0100 |
---|---|---|
committer | default <nobody@localhost> | 2024-03-25 16:15:09 +0100 |
commit | adf0a13992edb85738ac983a872937a805629474 (patch) | |
tree | 31e084c9ff92a82e2083e8225e703bceeec56981 /mastoapi.c | |
parent | bc752b7d67d834455eae9eacec16e28585c79c5f (diff) |
If an emoji in emojis.json is an URL to an image, it's stored in the tag list.
Diffstat (limited to 'mastoapi.c')
-rw-r--r-- | mastoapi.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2717,7 +2717,7 @@ int mastoapi_put_handler(const xs_dict *req, const char *q_path, if (valid_status(timeline_get_by_md5(&snac, md5, &msg))) { const char *content = xs_dict_get(args, "status"); xs *atls = xs_list_new(); - xs *f_content = not_really_markdown(content, &atls); + xs *f_content = not_really_markdown(content, &atls, NULL); /* replace fields with new content */ msg = xs_dict_set(msg, "sourceContent", content); |