snac2

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

commit 394240b9ba6393794cffd7affa3a5cc6075774aa
parent d1add0598ad273fc26242017b80aa909835b6e08
Author: default <nobody@localhost>
Date:   Wed, 28 Jun 2023 20:39:16 +0200

Also purge pinned.idx.

Diffstat:
Mdata.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/data.c b/data.c @@ -2326,7 +2326,7 @@ void purge_user(snac *snac) _purge_user_subdir(snac, "public", pub_days); - const char *idxs[] = { "followers.idx", "private.idx", "public.idx", NULL }; + const char *idxs[] = { "followers.idx", "private.idx", "public.idx", "pinned.idx", NULL }; for (n = 0; idxs[n]; n++) { xs *idx = xs_fmt("%s/%s", snac->basedir, idxs[n]);