diff options
author | default <nobody@localhost> | 2022-12-16 07:16:00 +0100 |
---|---|---|
committer | default <nobody@localhost> | 2022-12-16 07:16:00 +0100 |
commit | 25acaf178cc8a4112a5a150f5ee45bf69192cc0e (patch) | |
tree | 84267c8d738e10a755d66e6c046fb5cc3ccbf99e /activitypub.c | |
parent | 427f7341fa5db23b9e67a1d1035bb3dc12d35f40 (diff) |
Replaced all calls to post() with enqueue_message().
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 79ec98b..a193ac9 100644 --- a/activitypub.c +++ b/activitypub.c @@ -827,7 +827,7 @@ int process_message(snac *snac, char *msg, char *req) xs *f_msg = xs_dup(msg); xs *reply = msg_accept(snac, f_msg, actor); - post(snac, reply); + enqueue_message(snac, reply); if (xs_is_null(xs_dict_get(f_msg, "published"))) { /* add a date if it doesn't include one (Mastodon) */ |