summaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
authordefault <nobody@localhost>2022-11-18 08:21:40 +0100
committerdefault <nobody@localhost>2022-11-18 08:21:40 +0100
commit654326aa8bb1cae5105ffca2f227b71e5981290a (patch)
treeff4df0c3e747c936286049b7e86694c85c583931 /main.c
parente01f23cbe27d9acbe3279a78364e11bec4517aac (diff)
New function enqueue_output_to_actor().
Diffstat (limited to 'main.c')
-rw-r--r--main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/main.c b/main.c
index befbd32..8e3dbd2 100644
--- a/main.c
+++ b/main.c
@@ -178,7 +178,7 @@ int main(int argc, char *argv[])
following_add(&snac, actor, msg);
- enqueue_output(&snac, msg, actor, 0);
+ enqueue_output_by_actor(&snac, msg, actor, 0);
if (dbglevel) {
xs *j = xs_json_dumps_pp(msg, 4);
@@ -197,7 +197,7 @@ int main(int argc, char *argv[])
following_del(&snac, url);
- enqueue_output(&snac, msg, url, 0);
+ enqueue_output_by_actor(&snac, msg, url, 0);
snac_log(&snac, xs_fmt("unfollowed actor %s", url));
}