diff options
author | default <nobody@localhost> | 2023-02-02 04:55:58 +0100 |
---|---|---|
committer | default <nobody@localhost> | 2023-02-02 04:55:58 +0100 |
commit | 108ed072e299da7ce6fb3666f9bb3ce222fa8a1a (patch) | |
tree | b9f3e410fbfd81fb7189da2d1ffe3d23b17df58f | |
parent | 8d22c448d473491b959709d29af46c25e3d7f80b (diff) |
Renamed process_queue_item() to process_user_queue_item().
-rw-r--r-- | activitypub.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/activitypub.c b/activitypub.c index 3249e80..aea353b 100644 --- a/activitypub.c +++ b/activitypub.c @@ -1065,7 +1065,7 @@ int send_email(char *msg) } -void process_queue_item(snac *snac, xs_dict *q_item) +void process_user_queue_item(snac *snac, xs_dict *q_item) /* processes an item from the queue */ { char *type; @@ -1176,7 +1176,7 @@ void process_user_queue(snac *snac) continue; } - process_queue_item(snac, q_item); + process_user_queue_item(snac, q_item); } } |