diff options
author | default <nobody@localhost> | 2023-08-12 11:23:01 +0200 |
---|---|---|
committer | default <nobody@localhost> | 2023-08-12 11:23:01 +0200 |
commit | cac1c6febd0ce90424831b15a9651026b4bb017c (patch) | |
tree | ee9e290ef0a51aae2fec42665ef62348e5fc2666 /activitypub.c | |
parent | 499697258d2c266be69dc13dae96083fc78cd3ef (diff) |
Rewritten actor_get() to not depend on a user.
Diffstat (limited to 'activitypub.c')
-rw-r--r-- | activitypub.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activitypub.c b/activitypub.c index 2c20e63..6fb6bf5 100644 --- a/activitypub.c +++ b/activitypub.c @@ -117,7 +117,7 @@ int actor_request(snac *snac, const char *actor, xs_dict **data) *data = NULL; /* get from disk first */ - status = actor_get(snac, actor, data); + status = actor_get(actor, data); if (status != 200) { /* actor data non-existent or stale: get from the net */ |