summaryrefslogtreecommitdiff
path: root/mastoapi.c
diff options
context:
space:
mode:
Diffstat (limited to 'mastoapi.c')
-rw-r--r--mastoapi.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/mastoapi.c b/mastoapi.c
index 99e78ea..6fd0cf1 100644
--- a/mastoapi.c
+++ b/mastoapi.c
@@ -992,6 +992,9 @@ int mastoapi_get_handler(const xs_dict *req, const char *q_path,
xs *res = xs_list_new();
const char *md5 = xs_dict_get(args, "id[]");
+ if (xs_is_null(md5))
+ md5 = xs_dict_get(args, "id");
+
if (!xs_is_null(md5)) {
if (xs_type(md5) == XSTYPE_LIST)
md5 = xs_list_get(md5, 0);
@@ -1792,6 +1795,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(media_ids))
+ media_ids = xs_dict_get(args, "media_ids");
+
if (xs_is_null(visibility))
visibility = "public";
@@ -2158,6 +2164,9 @@ int mastoapi_post_handler(const xs_dict *req, const char *q_path,
if (strcmp(op, "votes") == 0) {
xs_list *choices = xs_dict_get(args, "choices[]");
+ if (xs_is_null(choices))
+ choices = xs_dict_get(args, "choices");
+
if (xs_type(choices) == XSTYPE_LIST) {
xs_str *v;