commit fd2b1509a8d26d795c32e33917497a1e43bc03a8
parent 30e3f2fc3d121a5d0bdf6ed201da7965ecbca7df
Author: default <nobody@localhost>
Date: Sun, 4 Dec 2022 07:19:45 +0100
Don't create obsolete directories in adduser().
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/utils.c b/utils.c
@@ -237,9 +237,9 @@ int adduser(char *uid)
}
const char *dirs[] = {
- "followers", "following", "local", "muted", "hidden",
+ "followers", "following", "muted", "hidden",
"public", "private", "queue", "history",
- "static", "timeline", NULL };
+ "static", NULL };
int n;
for (n = 0; dirs[n]; n++) {