mirror of
https://codeberg.org/grunfink/snac2.git
synced 2024-11-25 14:35:04 +00:00
mastoapi: return an empty /v1/trends/statuses.
This commit is contained in:
parent
9d87960836
commit
c80a30e228
1 changed files with 6 additions and 0 deletions
|
@ -2265,6 +2265,12 @@ int mastoapi_get_handler(const xs_dict *req, const char *q_path,
|
||||||
status = HTTP_STATUS_OK;
|
status = HTTP_STATUS_OK;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
if (strcmp(cmd, "/v1/trends/statuses") == 0) { /** **/
|
||||||
|
*body = xs_dup("[]");
|
||||||
|
*ctype = "application/json";
|
||||||
|
status = HTTP_STATUS_OK;
|
||||||
|
}
|
||||||
|
else
|
||||||
if (strcmp(cmd, "/v2/search") == 0) { /** **/
|
if (strcmp(cmd, "/v2/search") == 0) { /** **/
|
||||||
if (logged_in) {
|
if (logged_in) {
|
||||||
const char *q = xs_dict_get(args, "q");
|
const char *q = xs_dict_get(args, "q");
|
||||||
|
|
Loading…
Reference in a new issue