snac2

Fork of https://codeberg.org/grunfink/snac2
git clone https://git.inz.fi/snac2
Log | Files | Refs | README | LICENSE

commit 65ae0f87f67dbd822ecc8c260c16e283be9e66b4
parent a3b9ef5b98530a81f648b397fed91d78349dc4cd
Author: default <nobody@localhost>
Date:   Tue, 20 Feb 2024 06:13:34 +0100

Enqueue a link verification from the user purge.

Diffstat:
Mdata.c | 3+++
1 file changed, 3 insertions(+), 0 deletions(-)

diff --git a/data.c b/data.c @@ -2714,6 +2714,9 @@ void purge_user(snac *snac) int gc = index_gc(idx); srv_debug(1, xs_fmt("purge: %s %d", idx, gc)); } + + /* unrelated to purging, but it's a janitorial process, so what the hell */ + enqueue_verify_links(snac); }