mirror of
https://codeberg.org/grunfink/snac2.git
synced 2024-11-22 13:25:04 +00:00
Don't store objects other than 'Note' in timeline_request().
This commit is contained in:
parent
5c81dd88bc
commit
34a2b47e85
1 changed files with 14 additions and 10 deletions
|
@ -91,6 +91,9 @@ int timeline_request(snac *snac, char *id, char *referrer)
|
||||||
status = activitypub_request(snac, id, &object);
|
status = activitypub_request(snac, id, &object);
|
||||||
|
|
||||||
if (valid_status(status)) {
|
if (valid_status(status)) {
|
||||||
|
char *type = xs_dict_get(object, "type");
|
||||||
|
|
||||||
|
if (!xs_is_null(type) && strcmp(type, "Note") == 0) {
|
||||||
char *actor = xs_dict_get(object, "attributedTo");
|
char *actor = xs_dict_get(object, "attributedTo");
|
||||||
|
|
||||||
/* request (and drop) the actor for this entry */
|
/* request (and drop) the actor for this entry */
|
||||||
|
@ -108,6 +111,7 @@ int timeline_request(snac *snac, char *id, char *referrer)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return status;
|
return status;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue