diff options
author | default <nobody@localhost> | 2024-02-20 05:31:34 +0100 |
---|---|---|
committer | default <nobody@localhost> | 2024-02-20 05:31:34 +0100 |
commit | 34349112f6bfa6a7a25f778d2eabfa2b0aa00f9e (patch) | |
tree | cfed0776da9259472ac5620cc0933034ba1244a1 /activitypub.c | |
parent | ada3e978c5d8ba16e15c0ee081f4c1a4b703195c (diff) |
New verify_links q_item.
Diffstat (limited to 'activitypub.c')
-rw-r--r-- | activitypub.c | 4 |
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) timeline_request_replies(snac, id); } else + if (strcmp(type, "verify_links") == 0) { + verify_links(snac); + } + else snac_log(snac, xs_fmt("unexpected user q_item type '%s'", type)); } |