summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar default2024-02-20 06:13:34 +0100
committerGravatar default2024-02-20 06:13:34 +0100
commit65ae0f87f67dbd822ecc8c260c16e283be9e66b4 (patch)
tree6b62521643718ecfb670b8073ed056431749e2ad
parentThe link verification time is stored as a time_t. (diff)
downloadsnac2-65ae0f87f67dbd822ecc8c260c16e283be9e66b4.tar.gz
snac2-65ae0f87f67dbd822ecc8c260c16e283be9e66b4.tar.xz
snac2-65ae0f87f67dbd822ecc8c260c16e283be9e66b4.zip
Enqueue a link verification from the user purge.
-rw-r--r--data.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/data.c b/data.c
index e0a2d82..5a88526 100644
--- a/data.c
+++ b/data.c
@@ -2714,6 +2714,9 @@ void purge_user(snac *snac)
2714 int gc = index_gc(idx); 2714 int gc = index_gc(idx);
2715 srv_debug(1, xs_fmt("purge: %s %d", idx, gc)); 2715 srv_debug(1, xs_fmt("purge: %s %d", idx, gc));
2716 } 2716 }
2717
2718 /* unrelated to purging, but it's a janitorial process, so what the hell */
2719 enqueue_verify_links(snac);
2717} 2720}
2718 2721
2719 2722