mirror of
https://codeberg.org/grunfink/snac2.git
synced 2024-11-14 17:45:04 +00:00
cleanup
This commit is contained in:
parent
ddfd8aaca9
commit
f0c46a7c1f
1 changed files with 2 additions and 2 deletions
|
@ -2008,10 +2008,10 @@ int mastoapi_post_handler(const xs_dict *req, const char *q_path,
|
||||||
else if (i_ctype && xs_startswith(i_ctype, "application/x-www-form-urlencoded"))
|
else if (i_ctype && xs_startswith(i_ctype, "application/x-www-form-urlencoded"))
|
||||||
{
|
{
|
||||||
// Some apps send form data instead of json so we should cater for those
|
// Some apps send form data instead of json so we should cater for those
|
||||||
if (!xs_is_null(payload)) {
|
if (!xs_is_null(payload)) {
|
||||||
xs *upl = xs_url_dec(payload);
|
xs *upl = xs_url_dec(payload);
|
||||||
args = xs_url_vars(upl);
|
args = xs_url_vars(upl);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
args = xs_dup(xs_dict_get(req, "p_vars"));
|
args = xs_dup(xs_dict_get(req, "p_vars"));
|
||||||
|
|
Loading…
Reference in a new issue