diff options
author | default <nobody@localhost> | 2023-04-23 08:44:26 +0200 |
---|---|---|
committer | default <nobody@localhost> | 2023-04-23 08:44:26 +0200 |
commit | 291f251cedc9277d6cacc0071c9d4c03cd0bf32b (patch) | |
tree | f137b2f874682eb8e8371a7d5eb07e1ad9d5a5dc /data.c | |
parent | ed4bf2217f6590812094a6fcbd4239088b7095e2 (diff) |
Added mastoapi follow.
Diffstat (limited to 'data.c')
-rw-r--r-- | data.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1081,7 +1081,7 @@ d_char *_following_fn(snac *snac, const char *actor) } -int following_add(snac *snac, char *actor, char *msg) +int following_add(snac *snac, const char *actor, const xs_dict *msg) /* adds to the following list */ { int ret = 201; /* created */ @@ -1770,7 +1770,7 @@ void enqueue_output(snac *snac, xs_dict *msg, xs_str *inbox, int retries) } -void enqueue_output_by_actor(snac *snac, xs_dict *msg, xs_str *actor, int retries) +void enqueue_output_by_actor(snac *snac, xs_dict *msg, const xs_str *actor, int retries) /* enqueues an output message for an actor */ { xs *inbox = get_actor_inbox(snac, actor); |