From 5afa5ab071fc253cd11f8549de4ae8a5584451ad Mon Sep 17 00:00:00 2001 From: default Date: Mon, 18 Sep 2023 13:35:08 +0200 Subject: [PATCH] Also purge the 'pinned' folder. --- data.c | 1 + 1 file changed, 1 insertion(+) diff --git a/data.c b/data.c index 889d484..2e9f3b7 100644 --- a/data.c +++ b/data.c @@ -2436,6 +2436,7 @@ void purge_user(snac *snac) _purge_user_subdir(snac, "hidden", priv_days); _purge_user_subdir(snac, "private", priv_days); + _purge_user_subdir(snac, "pinned", pub_days); _purge_user_subdir(snac, "public", pub_days); const char *idxs[] = { "followers.idx", "private.idx", "public.idx", "pinned.idx", NULL };