summaryrefslogtreecommitdiff
path: root/activitypub.c
diff options
context:
space:
mode:
Diffstat (limited to 'activitypub.c')
-rw-r--r--activitypub.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/activitypub.c b/activitypub.c
index bd0efd4..e389915 100644
--- a/activitypub.c
+++ b/activitypub.c
@@ -2192,6 +2192,10 @@ void process_user_queue_item(snac *snac, xs_dict *q_item)
2192 timeline_request_replies(snac, id); 2192 timeline_request_replies(snac, id);
2193 } 2193 }
2194 else 2194 else
2195 if (strcmp(type, "verify_links") == 0) {
2196 verify_links(snac);
2197 }
2198 else
2195 snac_log(snac, xs_fmt("unexpected user q_item type '%s'", type)); 2199 snac_log(snac, xs_fmt("unexpected user q_item type '%s'", type));
2196} 2200}
2197 2201