summaryrefslogtreecommitdiff
path: root/activitypub.c
diff options
context:
space:
mode:
Diffstat (limited to 'activitypub.c')
-rw-r--r--activitypub.c4
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)
1065} 1065}
1066 1066
1067 1067
1068void process_queue_item(snac *snac, xs_dict *q_item) 1068void process_user_queue_item(snac *snac, xs_dict *q_item)
1069/* processes an item from the queue */ 1069/* processes an item from the queue */
1070{ 1070{
1071 char *type; 1071 char *type;
@@ -1176,7 +1176,7 @@ void process_user_queue(snac *snac)
1176 continue; 1176 continue;
1177 } 1177 }
1178 1178
1179 process_queue_item(snac, q_item); 1179 process_user_queue_item(snac, q_item);
1180 } 1180 }
1181} 1181}
1182 1182