diff options
author | default <nobody@localhost> | 2023-05-04 06:27:13 +0200 |
---|---|---|
committer | default <nobody@localhost> | 2023-05-04 06:27:13 +0200 |
commit | a9f0f2f695d653a2ca58057837fae6b8bc4dc13f (patch) | |
tree | 34e06cb1b1e03ed3ac9966218fd71f97f80dec81 /mastoapi.c | |
parent | cf8d91147b1a0233ba5d3d98a8806bd2a87c222d (diff) |
Avoid crash in optional mastoapi argument.
Diffstat (limited to 'mastoapi.c')
-rw-r--r-- | mastoapi.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -1569,6 +1569,9 @@ int mastoapi_post_handler(const xs_dict *req, const char *q_path, if (xs_is_null(media_ids)) media_ids = xs_dict_get(args, "media_ids[]"); + if (xs_is_null(visibility)) + visibility = "public"; + xs *attach_list = xs_list_new(); xs *irt = NULL; |