diff options
Diffstat (limited to 'mastoapi.c')
-rw-r--r-- | mastoapi.c | 17 |
1 files changed, 11 insertions, 6 deletions
@@ -866,12 +866,17 @@ int mastoapi_get_handler(const xs_dict *req, const char *q_path, xs_dict *v; while (xs_list_iter(&p, &v)) { - const char *type = xs_dict_get(v, "type"); - const char *objid = xs_dict_get(v, "objid"); + xs *noti = notify_get(&snac1, v); + + if (noti == NULL) + continue; + + const char *type = xs_dict_get(noti, "type"); + const char *objid = xs_dict_get(noti, "objid"); xs *actor = NULL; xs *entry = NULL; - if (!valid_status(object_get(xs_dict_get(v, "actor"), &actor))) + if (!valid_status(object_get(xs_dict_get(noti, "actor"), &actor))) continue; if (objid != NULL && !valid_status(object_get(objid, &entry))) @@ -896,15 +901,15 @@ int mastoapi_get_handler(const xs_dict *req, const char *q_path, mn = xs_dict_append(mn, "type", type); - xs *id = xs_replace(xs_dict_get(v, "id"), ".", ""); + xs *id = xs_replace(xs_dict_get(noti, "id"), ".", ""); mn = xs_dict_append(mn, "id", id); - mn = xs_dict_append(mn, "created_at", xs_dict_get(v, "date")); + mn = xs_dict_append(mn, "created_at", xs_dict_get(noti, "date")); xs *acct = mastoapi_account(actor); mn = xs_dict_append(mn, "account", acct); - if (objid != NULL) { + if (strcmp(type, "follow") != 0 && !xs_is_null(objid)) { xs *st = mastoapi_status(&snac1, entry); mn = xs_dict_append(mn, "status", st); } |